Index: runtime/vm/flow_graph_compiler_ia32.cc |
diff --git a/runtime/vm/flow_graph_compiler_ia32.cc b/runtime/vm/flow_graph_compiler_ia32.cc |
index a00e8b99efe1c8f7d2133a56aadf0abce5920843..14bf367491c7956fb07289a5eaa90f7b7f4cf079 100644 |
--- a/runtime/vm/flow_graph_compiler_ia32.cc |
+++ b/runtime/vm/flow_graph_compiler_ia32.cc |
@@ -1577,7 +1577,7 @@ void ParallelMoveResolver::EmitMove(int index) { |
if (constant.IsSmi() && (Smi::Cast(constant).Value() == 0)) { |
__ xorl(destination.reg(), destination.reg()); |
} else if (constant.IsSmi() && |
- source.constant_instruction()->representation() == kUnboxedInt32) { |
+ (source.constant_instruction()->representation() == kUnboxedInt32)) { |
__ movl(destination.reg(), Immediate(Smi::Cast(constant).Value())); |
} else { |
__ LoadObjectSafely(destination.reg(), constant); |
@@ -1614,7 +1614,7 @@ void ParallelMoveResolver::EmitMove(int index) { |
ASSERT(destination.IsStackSlot()); |
const Object& constant = source.constant(); |
if (constant.IsSmi() && |
- source.constant_instruction()->representation() == kUnboxedInt32) { |
+ (source.constant_instruction()->representation() == kUnboxedInt32)) { |
__ movl(destination.ToStackSlotAddress(), |
Immediate(Smi::Cast(constant).Value())); |
} else { |