diff options
author | 2016-09-15 10:46:43 +0000 | |
---|---|---|
committer | 2016-09-15 10:46:44 +0000 | |
commit | 6f41ec68d3a3fae7bcd9ebd70b39b60e954449f3 (patch) | |
tree | b5c61cceb4385592701ad6df437446f4961d34f5 | |
parent | 37c38930c58454b22bcc32acea273694e2187f12 (diff) | |
parent | 63e211347678a7fbbabfce94ebf3ca04f0e90a1f (diff) |
Merge "MIPS: Enable the ComparisonsLong test in the code generator test."
-rw-r--r-- | compiler/optimizing/codegen_test.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc index d9347f604e..070cbb3894 100644 --- a/compiler/optimizing/codegen_test.cc +++ b/compiler/optimizing/codegen_test.cc @@ -1007,17 +1007,7 @@ TEST_F(CodegenTest, ComparisonsInt) { } TEST_F(CodegenTest, ComparisonsLong) { - // TODO: make MIPS work for long - if (kRuntimeISA == kMips || kRuntimeISA == kMips64) { - return; - } - for (CodegenTargetConfig target_config : GetTargetConfigs()) { - if ((target_config.GetInstructionSet() == kMips) || - (target_config.GetInstructionSet() == kMips64)) { - continue; - } - for (int64_t i = -1; i <= 1; i++) { for (int64_t j = -1; j <= 1; j++) { for (int cond = kCondFirst; cond <= kCondLast; cond++) { |