diff options
author | Calin Juravle <calin@google.com> | 2014-11-11 14:13:15 +0000 |
---|---|---|
committer | Calin Juravle <calin@google.com> | 2014-11-11 14:13:15 +0000 |
commit | 5ad0582482756fc6a97218472e458f31c985e922 (patch) | |
tree | b6786d73f842ee053d7397db7ff9f84844e731ab /compiler/optimizing/codegen_test.cc | |
parent | 570570e0edaf8e3c4e93f2a30c13e78b7301d512 (diff) |
Fix lint error.
Change-Id: Ief9b9fe6982e7e76aae74d6c909bd9f4b3f82673
Diffstat (limited to 'compiler/optimizing/codegen_test.cc')
-rw-r--r-- | compiler/optimizing/codegen_test.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc index de2253b6fe..bdf58ed5de 100644 --- a/compiler/optimizing/codegen_test.cc +++ b/compiler/optimizing/codegen_test.cc @@ -363,15 +363,15 @@ NOT_LONG_TEST(ReturnNotLongINT64_MAX, #undef NOT_LONG_TEST TEST(CodegenTest, IntToLongOfLongToInt) { - const int64_t input = INT64_C(4294967296); // 2^32 - const uint16_t word0 = Low16Bits(Low32Bits(input)); // LSW. + const int64_t input = INT64_C(4294967296); // 2^32 + const uint16_t word0 = Low16Bits(Low32Bits(input)); // LSW. const uint16_t word1 = High16Bits(Low32Bits(input)); const uint16_t word2 = Low16Bits(High32Bits(input)); - const uint16_t word3 = High16Bits(High32Bits(input)); // MSW. + const uint16_t word3 = High16Bits(High32Bits(input)); // MSW. const uint16_t data[] = FIVE_REGISTERS_CODE_ITEM( Instruction::CONST_WIDE | 0 << 8, word0, word1, word2, word3, Instruction::CONST_WIDE | 2 << 8, 1, 0, 0, 0, - Instruction::ADD_LONG | 0, 0 << 8 | 2, // v0 <- 2^32 + 1 + Instruction::ADD_LONG | 0, 0 << 8 | 2, // v0 <- 2^32 + 1 Instruction::LONG_TO_INT | 4 << 8 | 0 << 12, Instruction::INT_TO_LONG | 2 << 8 | 4 << 12, Instruction::RETURN_WIDE | 2 << 8); |