diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-11-10 01:08:07 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-11-10 01:08:07 +0000 |
commit | 9ed2f80910160bbf8051d91cd74c82d4619885b4 (patch) | |
tree | cf7ecb5e996d39b61ad273edb0a6055c6a22c3dd /lib/Target/X86/X86JITInfo.h | |
parent | 8f24cc237fed73df977ea93f1f12344ca57a65c6 (diff) | |
download | external_llvm-9ed2f80910160bbf8051d91cd74c82d4619885b4.zip external_llvm-9ed2f80910160bbf8051d91cd74c82d4619885b4.tar.gz external_llvm-9ed2f80910160bbf8051d91cd74c82d4619885b4.tar.bz2 |
Rename isGVNonLazyPtr to isIndirectSym to reflect how it will be used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58949 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86JITInfo.h')
-rw-r--r-- | lib/Target/X86/X86JITInfo.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Target/X86/X86JITInfo.h b/lib/Target/X86/X86JITInfo.h index 65a417d..dd26636 100644 --- a/lib/Target/X86/X86JITInfo.h +++ b/lib/Target/X86/X86JITInfo.h @@ -37,11 +37,11 @@ namespace llvm { /// virtual void replaceMachineCodeForFunction(void *Old, void *New); - /// emitGlobalValueNonLazyPtr - Use the specified MachineCodeEmitter object - /// to emit a Mac OS X non-lazy pointer which contains the address of the - /// specified ptr. - virtual void *emitGlobalValueNonLazyPtr(const GlobalValue* GV, void *ptr, - MachineCodeEmitter &MCE); + /// emitGlobalValueIndirectSym - Use the specified MachineCodeEmitter object + /// to emit an indirect symbol which contains the address of the specified + /// ptr. + virtual void *emitGlobalValueIndirectSym(const GlobalValue* GV, void *ptr, + MachineCodeEmitter &MCE); /// emitFunctionStub - Use the specified MachineCodeEmitter object to emit a /// small native function that simply calls the function at the specified |