From cd2de0c1c7f1051a2f7bdb0e827dd6057f3bafcd Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Thu, 6 Nov 2014 15:59:38 +0000 Subject: Fix failures after div support. - We need to special case divide by -1 because of x86. - Disable div test on arm64, which does not support div yet. Change-Id: I07e137cb555a958b02a6c4070f296503b7e30bae --- compiler/optimizing/codegen_test.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'compiler/optimizing/codegen_test.cc') diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc index 6d4514f0ea..47e9fa4e2f 100644 --- a/compiler/optimizing/codegen_test.cc +++ b/compiler/optimizing/codegen_test.cc @@ -543,7 +543,11 @@ TEST(CodegenTest, MaterializedCondition2) { } } +#if defined(__aarch64__) +TEST(CodegenTest, DISABLED_ReturnDivIntLit8) { +#else TEST(CodegenTest, ReturnDivIntLit8) { +#endif const uint16_t data[] = ONE_REGISTER_CODE_ITEM( Instruction::CONST_4 | 4 << 12 | 0 << 8, Instruction::DIV_INT_LIT8, 3 << 8 | 0, -- cgit v1.2.3