diff options
author | Charles Davis <cdavis@mines.edu> | 2010-10-25 16:29:03 +0000 |
---|---|---|
committer | Charles Davis <cdavis@mines.edu> | 2010-10-25 16:29:03 +0000 |
commit | 6f12e29f7deab6e12bf56e4bdb61eb7a6ea18ad3 (patch) | |
tree | 83721ca55f2344cc8b6f872f0c04269f06686793 | |
parent | 852dda46251f50286b6d83425f39e20a5c7592e9 (diff) |
Make hotpatch attribute description a little less Wintel-specific.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117267 91177308-0d34-0410-b5e6-96231b3b80d8
-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 c2ee7019b9..3f6d9c68a2 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1132,9 +1132,11 @@ define void @f() optsize { ... } threshold for this caller.</dd> <dt><tt><b>hotpatch</b></tt></dt> - <dd>This attribute indicates that the prologue should contain a 'hotpatch' - sequence at the beginning. This is the same sequence used in the - system DLLs in Microsoft Windows XP Service Pack 2 and higher.</dd> + <dd>This attribute indicates that the function should be 'hotpatchable', + meaning the function can be patched even while it is loaded into memory. + On x86, the function prologue will contain a two-byte no-op sequence; + this is the same sequence used in the system DLLs in Microsoft Windows + XP Service Pack 2 and higher.</dd> <dt><tt><b>inlinehint</b></tt></dt> <dd>This attribute indicates that the source code contained a hint that inlining |