Changeset 154066 in webkit for trunk/Source/JavaScriptCore/offlineasm/cloop.rb
- Timestamp:
- Aug 14, 2013, 1:16:49 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/offlineasm/cloop.rb
r153273 r154066 399 399 400 400 def 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)})" 402 402 $asm.putc " || (#{operands[0].clValue(:double)} #{condition} #{operands[1].clValue(:double)}))" 403 403 $asm.putc " goto #{operands[2].cLabel};"
Note:
See TracChangeset
for help on using the changeset viewer.