mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-26 13:10:42 +00:00
Remove last references to hotpatch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141057 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e97552e850
commit
b3c4e26dc5
@ -1163,14 +1163,6 @@ define void @f() optsize { ... }
|
||||
function into callers whenever possible, ignoring any active inlining size
|
||||
threshold for this caller.</dd>
|
||||
|
||||
<dt><tt><b>hotpatch</b></tt></dt>
|
||||
<dd>This attribute indicates that the function should be 'hotpatchable',
|
||||
meaning the function can be patched and/or hooked even while it is
|
||||
loaded into memory. On x86, the function prologue will be preceded
|
||||
by six bytes of padding and will begin with a two-byte instruction.
|
||||
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
|
||||
|
@ -569,7 +569,6 @@ lltok::Kind LLLexer::LexIdentifier() {
|
||||
KEYWORD(noredzone);
|
||||
KEYWORD(noimplicitfloat);
|
||||
KEYWORD(naked);
|
||||
KEYWORD(hotpatch);
|
||||
KEYWORD(nonlazybind);
|
||||
|
||||
KEYWORD(type);
|
||||
|
@ -101,7 +101,6 @@ namespace lltok {
|
||||
kw_noredzone,
|
||||
kw_noimplicitfloat,
|
||||
kw_naked,
|
||||
kw_hotpatch,
|
||||
kw_nonlazybind,
|
||||
|
||||
kw_type,
|
||||
|
@ -172,7 +172,7 @@ FuncAttr ::= noreturn
|
||||
| optsize
|
||||
| ssp
|
||||
| sspreq
|
||||
| hotpatch
|
||||
| returns_twice
|
||||
| nonlazybind
|
||||
;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user