diff options
author | Calin Juravle <calin@google.com> | 2014-10-23 11:48:28 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-10-23 11:48:28 +0000 |
commit | 37a7188810e865a1ee0a7bdc2d01d62c1f1ea49e (patch) | |
tree | 1c42d51799207bb7c4ced079fce4878274fa8e81 /compiler/optimizing/codegen_test.cc | |
parent | 1e4dc259b4242c1a03415b5b5f4aed7a23e53f79 (diff) | |
parent | 039b6e2fd3bfadbd1ee8583002f673d6ccba5b7e (diff) | |
download | android_art-37a7188810e865a1ee0a7bdc2d01d62c1f1ea49e.tar.gz android_art-37a7188810e865a1ee0a7bdc2d01d62c1f1ea49e.tar.bz2 android_art-37a7188810e865a1ee0a7bdc2d01d62c1f1ea49e.zip |
Merge "Remove obsolete TODOs from codegen tests"
Diffstat (limited to 'compiler/optimizing/codegen_test.cc')
-rw-r--r-- | compiler/optimizing/codegen_test.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc index a84931a679..29ad3de6b3 100644 --- a/compiler/optimizing/codegen_test.cc +++ b/compiler/optimizing/codegen_test.cc @@ -134,8 +134,8 @@ static void TestCode(const uint16_t* data, bool has_result = false, int32_t expe HGraphBuilder builder(&arena); const DexFile::CodeItem* item = reinterpret_cast<const DexFile::CodeItem*>(data); HGraph* graph = builder.BuildGraph(*item); - // Remove suspend checks, they cannot be executed in this context. ASSERT_NE(graph, nullptr); + // Remove suspend checks, they cannot be executed in this context. RemoveSuspendChecks(graph); RunCodeBaseline(graph, has_result, expected); } @@ -397,8 +397,6 @@ TEST(CodegenTest, NonMaterializedCondition) { MUL_TEST(INT, MulInt); MUL_TEST(LONG, MulLong); -// MUL_TEST(FLOAT, Float); -// MUL_TEST(DOUBLE, Double); TEST(CodegenTest, ReturnMulIntLit8) { const uint16_t data[] = ONE_REGISTER_CODE_ITEM( |