diff options
author | 2014-10-22 14:57:06 +0000 | |
---|---|---|
committer | 2014-10-22 14:57:06 +0000 | |
commit | 036c408b6a7b4a6cb037fea876bf67fe2543dfba (patch) | |
tree | 09baf7af5dc392418cf065a92ae7f04f7a911db7 /compiler/optimizing/codegen_test.cc | |
parent | 7f7bf4ec461904961ddfb7deae8433c96a03f23e (diff) | |
parent | 48dee04f4e4214b0fdd8acd0587ef6b08d3d2456 (diff) |
Merge "Minor fix in codegen tests."
Diffstat (limited to 'compiler/optimizing/codegen_test.cc')
-rw-r--r-- | compiler/optimizing/codegen_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc index 8bb12de387..af4cf73867 100644 --- a/compiler/optimizing/codegen_test.cc +++ b/compiler/optimizing/codegen_test.cc @@ -135,8 +135,8 @@ static void TestCode(const uint16_t* data, bool has_result = false, int32_t expe 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. - RemoveSuspendChecks(graph); ASSERT_NE(graph, nullptr); + RemoveSuspendChecks(graph); RunCodeBaseline(graph, has_result, expected); } |