OSDN Git Service

Don't emit bkpt, takes extra space for nothing.
authorNicolas Geoffray <ngeoffray@google.com>
Mon, 18 May 2015 08:49:16 +0000 (09:49 +0100)
committerNicolas Geoffray <ngeoffray@google.com>
Mon, 18 May 2015 08:49:16 +0000 (09:49 +0100)
Change-Id: Id091dcdc950b590e5be55c4fa31d7779308e1a2c

compiler/utils/arm/assembler_arm.cc

index c410660..eca6f5a 100644 (file)
@@ -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 __
 }