From 8cdc5bccc899c0a38b4dd332a1fb1e1012900deb Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Fri, 6 May 2005 23:08:23 +0000
Subject: [PATCH] add a couple of notes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21754 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/LangRef.html | 7 ++++---
docs/ReleaseNotes.html | 2 ++
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 71faede993a..c0ba49ba28b 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -455,9 +455,10 @@ the future:
This calling convention attempts to make calls as fast as possible
(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. This calling
- convention does not support varargs and requires the prototype of all callees
- to exactly match the prototype of the function definition.
+ 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.
"coldcc" - The cold calling convention:
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index ed2632f9b0f..2845202bf84 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -87,6 +87,8 @@ bug fixes for those problems found since the 1.4 release.
Configuring LLVM to build targets selectively is now implemented, via the
--enable-targets= option. This feature is documented
here.
+ LLVM now supports custom and
+ target-specific calling conventions.