Revision: 21987
Author:   [email protected]
Date:     Tue Jun 24 16:20:44 2014 UTC
Log:      ARM64: fix operator precedence issue.

As a result the constant pool marker was always 0.

BUG=
[email protected]

Review URL: https://codereview.chromium.org/350923003
http://code.google.com/p/v8/source/detail?r=21987

Modified:
 /branches/bleeding_edge/src/arm64/assembler-arm64.cc

=======================================
--- /branches/bleeding_edge/src/arm64/assembler-arm64.cc Mon Jun 23 16:00:53 2014 UTC +++ /branches/bleeding_edge/src/arm64/assembler-arm64.cc Tue Jun 24 16:20:44 2014 UTC
@@ -455,7 +455,7 @@
   // + 1 is for the crash guard.
   // + 0/1 for alignment.
   int word_count = EntryCount() * 2 + 1 +
-                   (IsAligned(assm_->pc_offset(), 8)) ? 0 : 1;
+                   (IsAligned(assm_->pc_offset(), 8) ? 0 : 1);
   assm_->Emit(LDR_x_lit                          |
               Assembler::ImmLLiteral(word_count) |
               Assembler::Rt(xzr));

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to