projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c2ffd28
)
use getValueName instead of makeNameProper.
author
Chris Lattner
<sabre@nondot.org>
Tue, 14 Jul 2009 01:01:12 +0000
(
01:01
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 14 Jul 2009 01:01:12 +0000
(
01:01
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75577
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
b/lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
index e87bfaf16f66dc05cf78dd44b9abe0c7be99ad71..f160bd08e78f266bcb7822cf526afb06df78b71c 100644
(file)
--- a/
lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
+++ b/
lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
@@
-233,7
+233,7
@@
bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
EmitConstantPool(MF.getConstantPool());
if (F->hasDLLExportLinkage())
- DLLExportedFns.insert(Mang->
makeNameProper(F->getName(), ""
));
+ DLLExportedFns.insert(Mang->
getValueName(F
));
// Print the 'header' of function
emitFunctionHeader(MF);
@@
-910,7
+910,7
@@
bool X86ATTAsmPrinter::doFinalization(Module &M) {
printModuleLevelGV(I);
if (I->hasDLLExportLinkage())
- DLLExportedGVs.insert(Mang->
makeNameProper(I->getName(),""
));
+ DLLExportedGVs.insert(Mang->
getValueName(I
));
}
if (Subtarget->isTargetDarwin()) {