diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-16 00:51:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-16 00:51:39 +0000 |
commit | 4fb69f40bee04a415a92bca2a8ed4a8e72cf980d (patch) | |
tree | 27bd6a3ef5942593c6536b1e85578c717d63e99a /lib/Target/X86/X86COFFMachineModuleInfo.h | |
parent | cb44b28f4d96c059d30c1a77d3b7e406d362d94e (diff) | |
download | external_llvm-4fb69f40bee04a415a92bca2a8ed4a8e72cf980d.tar.gz external_llvm-4fb69f40bee04a415a92bca2a8ed4a8e72cf980d.tar.bz2 external_llvm-4fb69f40bee04a415a92bca2a8ed4a8e72cf980d.zip |
switch X86 target off CurFunctionName and MCIze more.
Note that the code wasn't calling DecorateCygMingName
when emitting the ".ascii -export" stuff at the end of
file for DLLExported functions. I don't know if it should
or not, but I'm preserving behavior.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93603 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86COFFMachineModuleInfo.h')
-rw-r--r-- | lib/Target/X86/X86COFFMachineModuleInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/X86/X86COFFMachineModuleInfo.h b/lib/Target/X86/X86COFFMachineModuleInfo.h index 5017af2e33..2a9e61c2eb 100644 --- a/lib/Target/X86/X86COFFMachineModuleInfo.h +++ b/lib/Target/X86/X86COFFMachineModuleInfo.h @@ -46,8 +46,8 @@ public: ~X86COFFMachineModuleInfo(); - void DecorateCygMingName(std::string &Name, const GlobalValue *GV, - const TargetData &TD); + void DecorateCygMingName(const MCSymbol* &Name, MCContext &Ctx, + const GlobalValue *GV, const TargetData &TD); void DecorateCygMingName(SmallVectorImpl<char> &Name, const GlobalValue *GV, const TargetData &TD); |