Changeset 195388 in webkit


Ignore:
Timestamp:
Jan 20, 2016 3:25:23 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

[JSC] Fix a typo in the Air definition of CeilDouble/CeilFloat
https://bugs.webkit.org/show_bug.cgi?id=153286

Patch by Benjamin Poulain <bpoulain@apple.com> on 2016-01-20
Reviewed by Mark Lam.

  • b3/air/AirOpcode.opcodes:

The second argument should a Def. The previous definition was
adding useless constraints on the allocation of the second argument.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r195387 r195388  
     12016-01-20  Benjamin Poulain  <bpoulain@apple.com>
     2
     3        [JSC] Fix a typo in the Air definition of CeilDouble/CeilFloat
     4        https://bugs.webkit.org/show_bug.cgi?id=153286
     5
     6        Reviewed by Mark Lam.
     7
     8        * b3/air/AirOpcode.opcodes:
     9        The second argument should a Def. The previous definition was
     10        adding useless constraints on the allocation of the second argument.
     11
    1122016-01-20  Benjamin Poulain  <benjamin@webkit.org>
    213
  • trunk/Source/JavaScriptCore/b3/air/AirOpcode.opcodes

    r195319 r195388  
    365365    Tmp, Tmp
    366366
    367 CeilDouble U:F:64, UD:F:64
    368     Tmp, Tmp
    369     x86: Addr, Tmp
    370 
    371 CeilFloat U:F:32, UD:F:32
     367CeilDouble U:F:64, D:F:64
     368    Tmp, Tmp
     369    x86: Addr, Tmp
     370
     371CeilFloat U:F:32, D:F:32
    372372    Tmp, Tmp
    373373    x86: Addr, Tmp
Note: See TracChangeset for help on using the changeset viewer.