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.