Reviewers: Hannes Payer,

Message:
Committed patchset #1 manually as 23225 (presubmit successful).

Description:
Fix arm64 build.

[email protected]

Committed: https://code.google.com/p/v8/source/detail?r=23225

Please review this at https://codereview.chromium.org/490643006/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+2, -2 lines):
  M test/compiler-unittests/arm64/instruction-selector-arm64-unittest.cc


Index: test/compiler-unittests/arm64/instruction-selector-arm64-unittest.cc
diff --git a/test/compiler-unittests/arm64/instruction-selector-arm64-unittest.cc b/test/compiler-unittests/arm64/instruction-selector-arm64-unittest.cc index 29bc926d3dbc0983cf0b13f6232b00b2edf2264b..a0c3ab5da987166912ec8972b81e517e2ed9d714 100644
--- a/test/compiler-unittests/arm64/instruction-selector-arm64-unittest.cc
+++ b/test/compiler-unittests/arm64/instruction-selector-arm64-unittest.cc
@@ -134,7 +134,7 @@ TEST_P(InstructionSelectorLogicalTest, Immediate) {
   // TODO(all): Add support for testing 64-bit immediates.
   if (type == kMachInt32) {
     // Immediate on the right.
-    TRACED_FOREACH(uint32_t, imm, kLogicalImmediates) {
+    TRACED_FOREACH(int32_t, imm, kLogicalImmediates) {
       StreamBuilder m(this, type, type);
       m.Return((m.*dpi.constructor)(m.Parameter(0), m.Int32Constant(imm)));
       Stream s = m.Build();
@@ -147,7 +147,7 @@ TEST_P(InstructionSelectorLogicalTest, Immediate) {
     }

     // Immediate on the left; all logical ops should commute.
-    TRACED_FOREACH(uint32_t, imm, kLogicalImmediates) {
+    TRACED_FOREACH(int32_t, imm, kLogicalImmediates) {
       StreamBuilder m(this, type, type);
       m.Return((m.*dpi.constructor)(m.Int32Constant(imm), m.Parameter(0)));
       Stream s = m.Build();


--
--
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