diff options
author | Arnold Schwaighofer <arnold.schwaighofer@gmail.com> | 2008-05-14 09:17:12 +0000 |
---|---|---|
committer | Arnold Schwaighofer <arnold.schwaighofer@gmail.com> | 2008-05-14 09:17:12 +0000 |
commit | 9097d14e575fa54dcf28dfd1ae0c9ebe6931dce1 (patch) | |
tree | 261c8864ee5c4993abb822982d3dabab956be6c1 /docs/LangRef.html | |
parent | e3f342880bc948b19ac1e9322f7738fcf4b8a07a (diff) | |
download | external_llvm-9097d14e575fa54dcf28dfd1ae0c9ebe6931dce1.zip external_llvm-9097d14e575fa54dcf28dfd1ae0c9ebe6931dce1.tar.gz external_llvm-9097d14e575fa54dcf28dfd1ae0c9ebe6931dce1.tar.bz2 |
Add documentation for tail call optimization to CodeGenerator.html. Add a link
referring to it to LangRef.html.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51097 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r-- | docs/LangRef.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 4428887..8adc4d7 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -586,9 +586,11 @@ the future:</p> (e.g. by passing things in registers). This calling convention allows the target to use whatever tricks it wants to produce fast code for the target, without having to conform to an externally specified ABI. Implementations of - this convention should allow arbitrary tail call optimization to be supported. - This calling convention does not support varargs and requires the prototype of - all callees to exactly match the prototype of the function definition. + this convention should allow arbitrary + <a href="CodeGenerator.html#tailcallopt">tail call optimization</a> to be + supported. This calling convention does not support varargs and requires the + prototype of all callees to exactly match the prototype of the function + definition. </dd> <dt><b>"<tt>coldcc</tt>" - The cold calling convention</b>:</dt> |