diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-12 21:06:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-12 21:06:41 +0000 |
commit | b6fc4a5650c5692b11c5374fd5646ba477e8e507 (patch) | |
tree | 776aad9281d8092f4ea4fe44783b99d9d5556cbf /include | |
parent | 08d04f591fbd5d4a40a14928cb7e341f29d3b5ed (diff) | |
download | external_llvm-b6fc4a5650c5692b11c5374fd5646ba477e8e507.zip external_llvm-b6fc4a5650c5692b11c5374fd5646ba477e8e507.tar.gz external_llvm-b6fc4a5650c5692b11c5374fd5646ba477e8e507.tar.bz2 |
eliminate the X86 version of GetGlobalValueSymbol, allowing
it to be non-virtual and soon disappear.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98387 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/AsmPrinter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index 6187447..0fc7f60 100644 --- a/include/llvm/CodeGen/AsmPrinter.h +++ b/include/llvm/CodeGen/AsmPrinter.h @@ -316,7 +316,7 @@ namespace llvm { /// GetGlobalValueSymbol - Return the MCSymbol for the specified global /// value. - virtual MCSymbol *GetGlobalValueSymbol(const GlobalValue *GV) const; + MCSymbol *GetGlobalValueSymbol(const GlobalValue *GV) const; /// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with /// global value name as its base, with the specified suffix, and where the |