[llvm-commits] [llvm] r133160 - /llvm/trunk/docs/LangRef.html
Dan Gohman
gohman at apple.com
Thu Jun 16 09:03:13 PDT 2011
Author: djg
Date: Thu Jun 16 11:03:13 2011
New Revision: 133160
URL: http://llvm.org/viewvc/llvm-project?rev=133160&view=rev
Log:
Document nonlazybind.
Modified:
llvm/trunk/docs/LangRef.html
Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=133160&r1=133159&r2=133160&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Thu Jun 16 11:03:13 2011
@@ -1164,6 +1164,11 @@
Most of the functions in the Windows system DLLs in Windows XP SP2 or
higher were compiled in this fashion.</dd>
+ <dt><tt><b>nonlazybind</b></tt></dt>
+ <dd>This attribute suppresses lazy symbol binding for the function. This
+ may make calls to the function faster, at the cost of extra program
+ startup time if the function is not called during program startup.</dd>
+
<dt><tt><b>inlinehint</b></tt></dt>
<dd>This attribute indicates that the source code contained a hint that inlining
this function is desirable (such as the "inline" keyword in C/C++). It
More information about the llvm-commits
mailing list