Fix for issue 20051601 - ARM instruction alignment.
The instructions do not have to be 4 byte aligned.
Change-Id: I58078a15190b835601094611ed01a599e2d99563
diff --git a/compiler/elf_writer_quick.cc b/compiler/elf_writer_quick.cc
index a92ce69..3ce19ab 100644
--- a/compiler/elf_writer_quick.cc
+++ b/compiler/elf_writer_quick.cc
@@ -495,7 +495,7 @@
isa = 1; // DW_ISA_ARM_thumb.
break;
case kArm:
- code_factor_bits_ = 2; // 32-bit instructions
+ code_factor_bits_ = 1; // 16-bit instructions
isa = 2; // DW_ISA_ARM_arm.
break;
case kArm64: