diff options
| -rw-r--r-- | compiler/optimizing/nodes.h | 2 | ||||
| -rw-r--r-- | test/Android.run-test.mk | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index d7069ca312..376e740998 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -1776,7 +1776,7 @@ class HTypeConversion : public HExpression<1> { Primitive::Type GetResultType() const { return GetType(); } bool CanBeMoved() const OVERRIDE { return true; } - bool InstructionDataEquals(HInstruction* /* other */) const OVERRIDE { return true; } + bool InstructionDataEquals(HInstruction* other ATTRIBUTE_UNUSED) const OVERRIDE { return true; } DECLARE_INSTRUCTION(TypeConversion); diff --git a/test/Android.run-test.mk b/test/Android.run-test.mk index 69286ccd80..7d56271cf3 100644 --- a/test/Android.run-test.mk +++ b/test/Android.run-test.mk @@ -308,6 +308,7 @@ TEST_ART_BROKEN_DEFAULT_RUN_TESTS := # Known broken tests for the arm64 optimizing compiler backend. TEST_ART_BROKEN_OPTIMIZING_ARM64_RUN_TESTS := \ 001-HelloWorld \ + 002-sleep \ 003-omnibus-opcodes \ 004-InterfaceTest \ 004-JniTest \ |