diff options
author | Magnus Lång <[email protected]> | 2016-06-16 16:50:46 +0200 |
---|---|---|
committer | Magnus Lång <[email protected]> | 2016-08-30 17:21:20 +0200 |
commit | a19e3f0e1e82b793d58f9ef0db907ba637793fb6 (patch) | |
tree | c71d9bb46da12e8ce9182969caa0e8d65bb0eacb /lib/hipe/sparc/hipe_sparc_ra_naive.erl | |
parent | 265b7f707273ad4dc73dd9d44007d417fc828774 (diff) | |
download | otp-a19e3f0e1e82b793d58f9ef0db907ba637793fb6.tar.gz otp-a19e3f0e1e82b793d58f9ef0db907ba637793fb6.tar.bz2 otp-a19e3f0e1e82b793d58f9ef0db907ba637793fb6.zip |
hipe_sparc: Minimise CFG<->linear conversions
Now, there will only ever be a single Linear->CFG conversion, just after
lowering from RTL, and only ever a single CFG->Linear conversion, just
before the finalise pass. Both of these now happen in hipe_sparc_main.
Diffstat (limited to 'lib/hipe/sparc/hipe_sparc_ra_naive.erl')
-rw-r--r-- | lib/hipe/sparc/hipe_sparc_ra_naive.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/hipe/sparc/hipe_sparc_ra_naive.erl b/lib/hipe/sparc/hipe_sparc_ra_naive.erl index b6c33dec6c..f621d94553 100644 --- a/lib/hipe/sparc/hipe_sparc_ra_naive.erl +++ b/lib/hipe/sparc/hipe_sparc_ra_naive.erl @@ -24,7 +24,7 @@ -include("hipe_sparc.hrl"). -ra(Defun, _Coloring_fp, _Options) -> % -> {Defun, Coloring} - {NewDefun,_DidSpill} = - hipe_sparc_ra_postconditions:check_and_rewrite2(Defun, [], 'naive'), - {NewDefun, []}. +ra(CFG, _Coloring_fp, _Options) -> % -> {CFG, Coloring} + {NewCFG,_DidSpill} = + hipe_sparc_ra_postconditions:check_and_rewrite2(CFG, [], 'naive'), + {NewCFG, []}. |