aboutsummaryrefslogtreecommitdiffstats
path: root/lib/hipe/x86
diff options
context:
space:
mode:
authorMagnus Lång <[email protected]>2016-06-10 15:03:20 +0200
committerMagnus Lång <[email protected]>2016-09-02 15:59:16 +0200
commite7ee6da98b31531029252f6aa7bbd07ccaaca37b (patch)
tree23c2caceba6ce390401239e73444731cfa0dfba3 /lib/hipe/x86
parent228b87812c99d03ed6a5d414f3ffd3d9fc4dc6c6 (diff)
downloadotp-e7ee6da98b31531029252f6aa7bbd07ccaaca37b.tar.gz
otp-e7ee6da98b31531029252f6aa7bbd07ccaaca37b.tar.bz2
otp-e7ee6da98b31531029252f6aa7bbd07ccaaca37b.zip
hipe_x86: Fix pseudo_tailcall prettyprinting
Diffstat (limited to 'lib/hipe/x86')
-rw-r--r--lib/hipe/x86/hipe_x86_pp.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hipe/x86/hipe_x86_pp.erl b/lib/hipe/x86/hipe_x86_pp.erl
index 9352cf5dbf..ff26a31877 100644
--- a/lib/hipe/x86/hipe_x86_pp.erl
+++ b/lib/hipe/x86/hipe_x86_pp.erl
@@ -171,7 +171,7 @@ pp_insn(Dev, I, Pre) ->
#pseudo_tailcall{'fun'=Fun, arity=Arity, stkargs=StkArgs, linkage=Linkage} ->
io:format(Dev, "\tpseudo_tailcall ", []),
pp_fun(Dev, Fun),
- io:format(Dev, "~w (", [Arity]),
+ io:format(Dev, " ~w (", [Arity]),
pp_args(Dev, StkArgs),
io:format(Dev, ") ~w\n", [Linkage]);
#pseudo_tailcall_prepare{} ->