summaryrefslogtreecommitdiff
path: root/compiler/utils/arm/assembler_arm.cc
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2015-05-18 09:49:16 +0100
committer Nicolas Geoffray <ngeoffray@google.com> 2015-05-18 09:49:16 +0100
commit3f68e389f79c21a784c83f7de917c569def3097e (patch)
tree689688b1dc67d6216526dce862c68e508626f59d /compiler/utils/arm/assembler_arm.cc
parent03e4351df62ade9fa0e9139ece28f23ba85c49c2 (diff)
Don't emit bkpt, takes extra space for nothing.
Change-Id: Id091dcdc950b590e5be55c4fa31d7779308e1a2c
Diffstat (limited to 'compiler/utils/arm/assembler_arm.cc')
-rw-r--r--compiler/utils/arm/assembler_arm.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/utils/arm/assembler_arm.cc b/compiler/utils/arm/assembler_arm.cc
index c41066027d..eca6f5a30c 100644
--- a/compiler/utils/arm/assembler_arm.cc
+++ b/compiler/utils/arm/assembler_arm.cc
@@ -860,8 +860,6 @@ void ArmExceptionSlowPath::Emit(Assembler* sasm) {
// Set up call to Thread::Current()->pDeliverException.
__ LoadFromOffset(kLoadWord, R12, TR, QUICK_ENTRYPOINT_OFFSET(4, pDeliverException).Int32Value());
__ blx(R12);
- // Call never returns.
- __ bkpt(0);
#undef __
}