diff options
author | Vladimir Marko <vmarko@google.com> | 2015-03-20 12:08:03 +0000 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2015-03-20 21:13:04 +0000 |
commit | 0b40ecf156e309aa17c72a28cd1b0237dbfb8746 (patch) | |
tree | bb9cf33eb2c46bdce1a3dcb2db3e2dba5c4b9e9b /compiler/dex/quick/arm/call_arm.cc | |
parent | 157fb9e52b8f11daeec5fbd6286853e0b920c215 (diff) | |
download | art-0b40ecf156e309aa17c72a28cd1b0237dbfb8746.tar.gz art-0b40ecf156e309aa17c72a28cd1b0237dbfb8746.tar.bz2 art-0b40ecf156e309aa17c72a28cd1b0237dbfb8746.zip |
Quick: Clean up slow paths.
Change-Id: I278d42be77b02778c4a419ae9024b37929915b64
Diffstat (limited to 'compiler/dex/quick/arm/call_arm.cc')
-rw-r--r-- | compiler/dex/quick/arm/call_arm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/arm/call_arm.cc b/compiler/dex/quick/arm/call_arm.cc index 1a9dbeae0f..318292029d 100644 --- a/compiler/dex/quick/arm/call_arm.cc +++ b/compiler/dex/quick/arm/call_arm.cc @@ -433,7 +433,7 @@ void ArmMir2Lir::GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method) { class StackOverflowSlowPath : public LIRSlowPath { public: StackOverflowSlowPath(Mir2Lir* m2l, LIR* branch, bool restore_lr, size_t sp_displace) - : LIRSlowPath(m2l, m2l->GetCurrentDexPc(), branch, nullptr), restore_lr_(restore_lr), + : LIRSlowPath(m2l, branch), restore_lr_(restore_lr), sp_displace_(sp_displace) { } void Compile() OVERRIDE { |