diff options
author | Sverker Eriksson <[email protected]> | 2016-10-20 15:14:05 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-10-21 15:02:07 +0200 |
commit | f66a70f651c2889f69b938e7ad061bddb8fe2116 (patch) | |
tree | 40c7f95135d1fb43612e0226f7dadecf4c4b0ec2 /lib | |
parent | a148265b865abbd001b308be9a6f79b68896306a (diff) | |
download | otp-f66a70f651c2889f69b938e7ad061bddb8fe2116.tar.gz otp-f66a70f651c2889f69b938e7ad061bddb8fe2116.tar.bz2 otp-f66a70f651c2889f69b938e7ad061bddb8fe2116.zip |
hipe,llvm: Change inc_stack_0 bif call to not_remote
Seems to work either way, it just seem more correct
as all other 'bif' calls are 'not_remote'.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/hipe/llvm/hipe_rtl_to_llvm.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hipe/llvm/hipe_rtl_to_llvm.erl b/lib/hipe/llvm/hipe_rtl_to_llvm.erl index 44bd1ad9c5..53aa8c57b2 100644 --- a/lib/hipe/llvm/hipe_rtl_to_llvm.erl +++ b/lib/hipe/llvm/hipe_rtl_to_llvm.erl @@ -1461,7 +1461,7 @@ handle_relocations(Relocs, Data, Fun) -> Relocs2 = lists:foldl(fun const_to_dict/2, Relocs1, ConstLabels), %% Temporary Store inc_stack and llvm_fix_pinned_regs to Dictionary %% TODO: Remove this - Relocs3 = dict:store("inc_stack_0", {call, remote, {bif, inc_stack_0, 0}}, Relocs2), + Relocs3 = dict:store("inc_stack_0", {call, not_remote, {bif, inc_stack_0, 0}}, Relocs2), Relocs4 = dict:store("hipe_bifs.llvm_fix_pinned_regs.0", {call, remote, {hipe_bifs, llvm_fix_pinned_regs, 0}}, Relocs3), BranchMetaData = [ |