From 39d57e2de8ec7420f2395a28cd7bd51e658d57b8 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Thu, 13 Mar 2014 10:28:41 +0000 Subject: [PATCH] Fix non-{arm, x86} builds. Change-Id: If4c13775f8e1fd0fd26b4a731f3011c77b0bfed1 --- compiler/optimizing/codegen_test.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc index a6ecdfbe2..5020dd0a5 100644 --- a/compiler/optimizing/codegen_test.cc +++ b/compiler/optimizing/codegen_test.cc @@ -57,14 +57,17 @@ static void TestCode(const uint16_t* data, bool has_result = false, int32_t expe typedef int32_t (*fptr)(); #if defined(__i386__) int32_t result = reinterpret_cast(allocator.memory())(); + if (has_result) { + CHECK_EQ(result, expected); + } #endif CHECK(CodeGenerator::CompileGraph(graph, kArm, &allocator)); #if defined(__arm__) int32_t result = reinterpret_cast(allocator.memory())(); -#endif if (has_result) { CHECK_EQ(result, expected); } +#endif } TEST(CodegenTest, ReturnVoid) { -- 2.11.0