From 039b6e2fd3bfadbd1ee8583002f673d6ccba5b7e Mon Sep 17 00:00:00 2001 From: Calin Juravle Date: Thu, 23 Oct 2014 12:32:11 +0100 Subject: Remove obsolete TODOs from codegen tests The features are already exercised by the art test 411-optimizing-arith. Change-Id: Id008931e0ed8206ced11ecc85a80a7e4aef3e68e --- compiler/optimizing/codegen_test.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'compiler/optimizing/codegen_test.cc') 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(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( -- cgit v1.2.3-59-g8ed1b