Index: src/x64/code-stubs-x64.cc |
diff --git a/src/x64/code-stubs-x64.cc b/src/x64/code-stubs-x64.cc |
index 058e99bd4c7e22342df80bde2113668925922e0d..b1539ab8d79be7d20cf3a5163057419859f3b53e 100644 |
--- a/src/x64/code-stubs-x64.cc |
+++ b/src/x64/code-stubs-x64.cc |
@@ -337,7 +337,7 @@ void MathPowStub::Generate(MacroAssembler* masm) { |
// Test for 0.5. |
// Load double_scratch with 0.5. |
__ movq(scratch, V8_UINT64_C(0x3FE0000000000000)); |
- __ movq(double_scratch, scratch); |
+ __ Movq(double_scratch, scratch); |
// Already ruled out NaNs for exponent. |
__ ucomisd(double_scratch, double_exponent); |
__ j(not_equal, ¬_plus_half, Label::kNear); |
@@ -347,7 +347,7 @@ void MathPowStub::Generate(MacroAssembler* masm) { |
// According to IEEE-754, double-precision -Infinity has the highest |
// 12 bits set and the lowest 52 bits cleared. |
__ movq(scratch, V8_UINT64_C(0xFFF0000000000000)); |
- __ movq(double_scratch, scratch); |
+ __ Movq(double_scratch, scratch); |
__ ucomisd(double_scratch, double_base); |
// Comparing -Infinity with NaN results in "unordered", which sets the |
// zero flag as if both were equal. However, it also sets the carry flag. |
@@ -379,7 +379,7 @@ void MathPowStub::Generate(MacroAssembler* masm) { |
// According to IEEE-754, double-precision -Infinity has the highest |
// 12 bits set and the lowest 52 bits cleared. |
__ movq(scratch, V8_UINT64_C(0xFFF0000000000000)); |
- __ movq(double_scratch, scratch); |
+ __ Movq(double_scratch, scratch); |
__ ucomisd(double_scratch, double_base); |
// Comparing -Infinity with NaN results in "unordered", which sets the |
// zero flag as if both were equal. However, it also sets the carry flag. |