diff options
author | Artem Serov <artem.serov@linaro.org> | 2016-08-15 14:22:07 +0100 |
---|---|---|
committer | Artem Serov <artem.serov@linaro.org> | 2016-08-19 10:39:23 +0100 |
commit | ba6b679bd34449ec56508966706ca1b8d5e7cb17 (patch) | |
tree | ec5985cc0f9e8a75c717513954d25d69e526065e /compiler/utils/assembler.cc | |
parent | f606c3a687e3eae94296ba74d2d820b6e37692ff (diff) |
ARM: Purge Arm32Assembler.
Use Thumb2Assembler always. This originated from finding out that
the JNI tests are run using the Arm32Assembler however in real
world Thumb2Assembler is used for JNI. Therefore Arm32Assembler
code is dead except its own tests and the illegitimate use in
JNI tests.
Change-Id: I9ca6b83582bf97149a46690518ccb9312b1a3b68
Diffstat (limited to 'compiler/utils/assembler.cc')
-rw-r--r-- | compiler/utils/assembler.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/utils/assembler.cc b/compiler/utils/assembler.cc index 81159e69a0..57f3b1570a 100644 --- a/compiler/utils/assembler.cc +++ b/compiler/utils/assembler.cc @@ -20,7 +20,6 @@ #include <vector> #ifdef ART_ENABLE_CODEGEN_arm -#include "arm/assembler_arm32.h" #include "arm/assembler_thumb2.h" #endif #ifdef ART_ENABLE_CODEGEN_arm64 |