diff options
author | Duncan Sands <baldrick@free.fr> | 2012-11-16 12:36:39 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2012-11-16 12:36:39 +0000 |
commit | d71b4e456829ffb3773b968200663447782ed219 (patch) | |
tree | aaaa675996ea686d48af998626587a2575a3721b /llvm/docs/CodeGenerator.rst | |
parent | 38f0bb5161737eb6eeb6e74f130d657bf25f3909 (diff) | |
download | bcm5719-llvm-d71b4e456829ffb3773b968200663447782ed219.tar.gz bcm5719-llvm-d71b4e456829ffb3773b968200663447782ed219.zip |
Add the Erlang/HiPE calling convention, patch by Yiannis Tsiouris.
llvm-svn: 168166
Diffstat (limited to 'llvm/docs/CodeGenerator.rst')
-rw-r--r-- | llvm/docs/CodeGenerator.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/CodeGenerator.rst b/llvm/docs/CodeGenerator.rst index 21af969d42a..104b848ebf2 100644 --- a/llvm/docs/CodeGenerator.rst +++ b/llvm/docs/CodeGenerator.rst @@ -1982,8 +1982,8 @@ Tail call optimization Tail call optimization, callee reusing the stack of the caller, is currently supported on x86/x86-64 and PowerPC. It is performed if: -* Caller and callee have the calling convention ``fastcc`` or ``cc 10`` (GHC - call convention). +* Caller and callee have the calling convention ``fastcc``, ``cc 10`` (GHC + calling convention) or ``cc 11`` (HiPE calling convention). * The call is a tail call - in tail position (ret immediately follows call and ret uses value of call or is void). |