diff options
| author | Dan Gohman <gohman@apple.com> | 2011-06-16 16:03:13 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2011-06-16 16:03:13 +0000 |
| commit | 8bd11f183478a5a1f18d6e42b0ea00f876c86d46 (patch) | |
| tree | e19c4fe5ca4155a7db6f3c47a12a879eba58dbc0 /llvm/docs | |
| parent | 8eb36ef4976b01a04fd690721d30426054093d38 (diff) | |
| download | bcm5719-llvm-8bd11f183478a5a1f18d6e42b0ea00f876c86d46.tar.gz bcm5719-llvm-8bd11f183478a5a1f18d6e42b0ea00f876c86d46.zip | |
Document nonlazybind.
llvm-svn: 133160
Diffstat (limited to 'llvm/docs')
| -rw-r--r-- | llvm/docs/LangRef.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index 74678c7be8e..7823f12ffff 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -1164,6 +1164,11 @@ define void @f() optsize { ... } 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 |

