summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-14 15:57:55 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-14 15:57:55 +0000
commit41ffe6c7afe0ff8ec3d0ae11bd82d165abe5a232 (patch)
tree02e91439e6d5d28fcc2ffe0e5e528e59e2043d4f /include
parent69fcae91a4c46af5c13be1618c7592e95597b327 (diff)
downloadllvm-41ffe6c7afe0ff8ec3d0ae11bd82d165abe5a232.tar.gz
llvm-41ffe6c7afe0ff8ec3d0ae11bd82d165abe5a232.tar.bz2
llvm-41ffe6c7afe0ff8ec3d0ae11bd82d165abe5a232.tar.xz
Revert r75610 (and r75620, which was blocking the revert), in the hopes of
unbreaking llvm-gcc (on Darwin). --- Reverse-merging r75620 into '.': U include/llvm/Support/Mangler.h --- Reverse-merging r75610 into '.': U test/CodeGen/X86/loop-hoist.ll G include/llvm/Support/Mangler.h U lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp U lib/VMCore/Mangler.cpp git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75636 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/Mangler.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/include/llvm/Support/Mangler.h b/include/llvm/Support/Mangler.h
index 0578f8f2b4..0dc26edc2d 100644
--- a/include/llvm/Support/Mangler.h
+++ b/include/llvm/Support/Mangler.h
@@ -82,13 +82,10 @@ public:
return (AcceptableChars[X/32] & (1 << (X&31))) != 0;
}
- /// getMangledName - Returns the mangled name of V, an LLVM Value,
- /// in the current module. If 'Suffix' is specified, the name ends with the
- /// specified suffix. If 'ForcePrivate' is specified, the label is specified
- /// to have a private label prefix.
+ /// getValueName - Returns the mangled name of V, an LLVM Value,
+ /// in the current module.
///
- std::string getMangledName(const GlobalValue *V, const char *Suffix = "",
- bool ForcePrivate = false);
+ std::string getValueName(const GlobalValue *V, const char *Suffix = "");
/// makeNameProper - We don't want identifier names with ., space, or
/// - in them, so we mangle these characters into the strings "d_",