diff options
author | Sverker Eriksson <[email protected]> | 2016-11-23 16:28:17 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-11-23 16:28:17 +0100 |
commit | 769874dc399249272a87bcb7ef46905698bb24d2 (patch) | |
tree | 01a4037d7d6208b09bbfa1e04372bd98cad45d44 /lib/hipe/icode | |
parent | f9382be98398bdb5fe208d99823d7e0d4431f1f2 (diff) | |
parent | 2ee19c8a5b44a5b4eeb21f1e6ba6ae4236563c6f (diff) | |
download | otp-769874dc399249272a87bcb7ef46905698bb24d2.tar.gz otp-769874dc399249272a87bcb7ef46905698bb24d2.tar.bz2 otp-769874dc399249272a87bcb7ef46905698bb24d2.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/hipe/icode')
-rw-r--r-- | lib/hipe/icode/hipe_icode_call_elim.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/hipe/icode/hipe_icode_call_elim.erl b/lib/hipe/icode/hipe_icode_call_elim.erl index 6a22133962..71c709a7d1 100644 --- a/lib/hipe/icode/hipe_icode_call_elim.erl +++ b/lib/hipe/icode/hipe_icode_call_elim.erl @@ -46,7 +46,8 @@ cfg(IcodeSSA) -> -spec elim_insn(icode_instr()) -> icode_instr(). elim_insn(Insn=#icode_call{'fun'={_,_,_}=MFA, args=Args, type=remote, dstlist=[Dst=#icode_variable{ - annotation={type_anno, RetType, _}}]}) -> + annotation={type_anno, RetType, _}}], + continuation=[], fail_label=[]}) -> Opaques = 'universe', case erl_types:t_is_singleton(RetType, Opaques) of true -> |