1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Remove last references to hotpatch.

llvm-svn: 141057
This commit is contained in:
Rafael Espindola 2011-10-04 03:08:43 +00:00
parent 82881bd04b
commit 0158ec7cce
4 changed files with 1 additions and 11 deletions

View File

@ -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

View File

@ -569,7 +569,6 @@ lltok::Kind LLLexer::LexIdentifier() {
KEYWORD(noredzone);
KEYWORD(noimplicitfloat);
KEYWORD(naked);
KEYWORD(hotpatch);
KEYWORD(nonlazybind);
KEYWORD(type);

View File

@ -101,7 +101,6 @@ namespace lltok {
kw_noredzone,
kw_noimplicitfloat,
kw_naked,
kw_hotpatch,
kw_nonlazybind,
kw_type,

View File

@ -172,7 +172,7 @@ FuncAttr ::= noreturn
| optsize
| ssp
| sspreq
| hotpatch
| returns_twice
| nonlazybind
;