diff options
author | Magnus Lång <[email protected]> | 2016-04-14 19:04:22 +0200 |
---|---|---|
committer | Magnus Lång <[email protected]> | 2016-08-30 17:18:00 +0200 |
commit | cca2b0a38dd4cbc3dfef026e0d8c2cba57270935 (patch) | |
tree | 342e57fd13a5eed4898f3379b17942e34afd1210 /lib/hipe/arm/hipe_arm_main.erl | |
parent | 5ffdaa02d53c26fbc41d4bd16575ef9a6ee3c1d7 (diff) | |
download | otp-cca2b0a38dd4cbc3dfef026e0d8c2cba57270935.tar.gz otp-cca2b0a38dd4cbc3dfef026e0d8c2cba57270935.tar.bz2 otp-cca2b0a38dd4cbc3dfef026e0d8c2cba57270935.zip |
hipe_arm: Improve peephole optimiser
Diffstat (limited to 'lib/hipe/arm/hipe_arm_main.erl')
-rw-r--r-- | lib/hipe/arm/hipe_arm_main.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hipe/arm/hipe_arm_main.erl b/lib/hipe/arm/hipe_arm_main.erl index dce1193b24..c81cd92160 100644 --- a/lib/hipe/arm/hipe_arm_main.erl +++ b/lib/hipe/arm/hipe_arm_main.erl @@ -32,7 +32,7 @@ rtl_to_arm(MFA, RTL, Options) -> Defun3 = hipe_arm_frame:frame(Defun2), %% io:format("~w: after frame\n", [?MODULE]), %% hipe_arm_pp:pp(Defun3), - Defun4 = hipe_arm_finalise:finalise(Defun3), + Defun4 = hipe_arm_finalise:finalise(Defun3, Options), %% io:format("~w: after finalise\n", [?MODULE]), pp(Defun4, MFA, Options), {native, arm, {unprofiled, Defun4}}. |