diff options
author | Magnus Lång <[email protected]> | 2016-06-10 15:03:20 +0200 |
---|---|---|
committer | Magnus Lång <[email protected]> | 2016-09-02 15:59:16 +0200 |
commit | e7ee6da98b31531029252f6aa7bbd07ccaaca37b (patch) | |
tree | 23c2caceba6ce390401239e73444731cfa0dfba3 /lib | |
parent | 228b87812c99d03ed6a5d414f3ffd3d9fc4dc6c6 (diff) | |
download | otp-e7ee6da98b31531029252f6aa7bbd07ccaaca37b.tar.gz otp-e7ee6da98b31531029252f6aa7bbd07ccaaca37b.tar.bz2 otp-e7ee6da98b31531029252f6aa7bbd07ccaaca37b.zip |
hipe_x86: Fix pseudo_tailcall prettyprinting
Diffstat (limited to 'lib')
-rw-r--r-- | lib/hipe/x86/hipe_x86_pp.erl | 2 |
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{} -> |