aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/Mangler.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-15 04:50:47 +0000
committerChris Lattner <sabre@nondot.org>2009-07-15 04:50:47 +0000
commit98a5ca15febce8710e21e75cc7ee417f86fc6e47 (patch)
tree9c48d3fe9ff45f89432a8a03ffff44ffd617adf7 /include/llvm/Support/Mangler.h
parent1ad1c1d327aa47a077ece9c0f49fc59200872b63 (diff)
downloadexternal_llvm-98a5ca15febce8710e21e75cc7ee417f86fc6e47.zip
external_llvm-98a5ca15febce8710e21e75cc7ee417f86fc6e47.tar.gz
external_llvm-98a5ca15febce8710e21e75cc7ee417f86fc6e47.tar.bz2
eliminate the Mangler::PreserveAsmNames bit, the sole client of this
can do it perfectly well itself. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75743 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Mangler.h')
-rw-r--r--include/llvm/Support/Mangler.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Support/Mangler.h b/include/llvm/Support/Mangler.h
index 0578f8f..e04245d 100644
--- a/include/llvm/Support/Mangler.h
+++ b/include/llvm/Support/Mangler.h
@@ -38,10 +38,6 @@ class Mangler {
/// the space character. By default, this is false.
bool UseQuotes;
- /// PreserveAsmNames - If this is set, the asm escape character is not removed
- /// from names with 'asm' specifiers.
- bool PreserveAsmNames;
-
/// AnonGlobalIDs - We need to give global values the same name every time
/// they are mangled. This keeps track of the number we give to anonymous
/// ones.
@@ -65,10 +61,6 @@ public:
/// strings for assembler labels.
void setUseQuotes(bool Val) { UseQuotes = Val; }
- /// setPreserveAsmNames - If the mangler should not strip off the asm name
- /// @verbatim identifier (\001), this should be set. @endverbatim
- void setPreserveAsmNames(bool Val) { PreserveAsmNames = Val; }
-
/// Acceptable Characters - This allows the target to specify which characters
/// are acceptable to the assembler without being mangled. By default we
/// allow letters, numbers, '_', '$', and '.', which is what GAS accepts.