Commit 66dcb632 authored by bmeurer@chromium.org's avatar bmeurer@chromium.org

Fix arm64 build.

TBR=hpayer@chromium.org

Review URL: https://codereview.chromium.org/490643006

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23225 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 1605474d
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment