aboutsummaryrefslogtreecommitdiffstats
path: root/lib/hipe/llvm
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2018-01-22 14:18:45 +0100
committerBjörn Gustavsson <[email protected]>2018-01-22 14:18:45 +0100
commitb04e955ea3eaed13c709546b57e74e26d868323a (patch)
tree23a3d7424d4a4c40b27bdc3dbcc239fc500f255e /lib/hipe/llvm
parent737ba8a823a557b5232bb7e00bb3930dd320785d (diff)
parent7a37e39d45597a25ff532751c5131938b5286331 (diff)
downloadotp-b04e955ea3eaed13c709546b57e74e26d868323a.tar.gz
otp-b04e955ea3eaed13c709546b57e74e26d868323a.tar.bz2
otp-b04e955ea3eaed13c709546b57e74e26d868323a.zip
Merge branch 'maint'
* maint: ErLLVM: Preserve precise BEAM tailcall semantics observer: Fix change accum Remove double calls observer: Don't crash for late messages observer: Optimize tv tab for many tables
Diffstat (limited to 'lib/hipe/llvm')
-rw-r--r--lib/hipe/llvm/hipe_llvm.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hipe/llvm/hipe_llvm.erl b/lib/hipe/llvm/hipe_llvm.erl
index ccd40162cb..343ca94cb1 100644
--- a/lib/hipe/llvm/hipe_llvm.erl
+++ b/lib/hipe/llvm/hipe_llvm.erl
@@ -934,7 +934,7 @@ pp_ins(Dev, Ver, I) ->
end,
case call_is_tail(I) of
true -> write(Dev, "tail ");
- false -> ok
+ false -> write(Dev, "notail ")
end,
write(Dev, ["call ", call_cconv(I), " "]),
pp_options(Dev, call_ret_attrs(I)),