Remove unused Thread parameter from ThrowArithmeticExceptionDivideByZero.
The "Thread* self" parameter of ThrowArithmeticExceptionDivideByZero is unused.
This CL removes it and updates all call sites.
Change-Id: I5cff86e97dd82dd07f4c174a3d8fbcf980da4aea
diff --git a/src/oat/runtime/support_throw.cc b/src/oat/runtime/support_throw.cc
index b8c68a5..9588698 100644
--- a/src/oat/runtime/support_throw.cc
+++ b/src/oat/runtime/support_throw.cc
@@ -67,7 +67,7 @@
mirror::AbstractMethod** sp)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
FinishCalleeSaveFrameSetup(self, sp, Runtime::kSaveAll);
- ThrowArithmeticExceptionDivideByZero(self);
+ ThrowArithmeticExceptionDivideByZero();
self->QuickDeliverException();
}