Ignore:
Timestamp:
Aug 14, 2013, 1:16:49 PM (12 years ago)
Author:
[email protected]
Message:

Compile fix for Win64 with jit disabled.
https://bugs.webkit.org/show_bug.cgi?id=119804

Reviewed by Michael Saboff.

  • offlineasm/cloop.rb: Added std:: before isnan.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/offlineasm/cloop.rb

    r153273 r154066  
    399399
    400400def cloopEmitCompareDoubleWithNaNCheckAndBranch(operands, condition)
    401     $asm.putc "if (std::isnan(#{operands[0].clValue(:double)}) || isnan(#{operands[1].clValue(:double)})"
     401    $asm.putc "if (std::isnan(#{operands[0].clValue(:double)}) || std::isnan(#{operands[1].clValue(:double)})"
    402402    $asm.putc "    || (#{operands[0].clValue(:double)} #{condition} #{operands[1].clValue(:double)}))"
    403403    $asm.putc "    goto #{operands[2].cLabel};"
Note: See TracChangeset for help on using the changeset viewer.