Index: src/x64/lithium-codegen-x64.cc |
=================================================================== |
--- src/x64/lithium-codegen-x64.cc (revision 6488) |
+++ src/x64/lithium-codegen-x64.cc (working copy) |
@@ -429,7 +429,10 @@ |
if (cc == no_condition) { |
__ Jump(entry, RelocInfo::RUNTIME_ENTRY); |
} else { |
- __ j(cc, entry, RelocInfo::RUNTIME_ENTRY); |
+ NearLabel done; |
+ __ j(NegateCondition(cc), &done); |
+ __ Jump(entry, RelocInfo::RUNTIME_ENTRY); |
+ __ bind(&done); |
} |
} |