Revision: 23225
Author: [email protected]
Date: Wed Aug 20 10:33:47 2014 UTC
Log: Fix arm64 build.
[email protected]
Review URL: https://codereview.chromium.org/490643006
http://code.google.com/p/v8/source/detail?r=23225
Modified:
/branches/bleeding_edge/test/compiler-unittests/arm64/instruction-selector-arm64-unittest.cc
=======================================
---
/branches/bleeding_edge/test/compiler-unittests/arm64/instruction-selector-arm64-unittest.cc
Wed Aug 20 09:25:30 2014 UTC
+++
/branches/bleeding_edge/test/compiler-unittests/arm64/instruction-selector-arm64-unittest.cc
Wed Aug 20 10:33:47 2014 UTC
@@ -134,7 +134,7 @@
// 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 @@
}
// 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.