summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Mangler.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-09-07 18:20:41 +0000
committerChris Lattner <sabre@nondot.org>2006-09-07 18:20:41 +0000
commit833eb68a1f18f361b2429fe12d13533cc9e3debe (patch)
treefe9fd99cdfbe5b87d8b4e4b2405182c77350a47f /include/llvm/Support/Mangler.h
parent81fe06a112236f6777730009cb97893aa0acba56 (diff)
downloadllvm-833eb68a1f18f361b2429fe12d13533cc9e3debe.tar.gz
llvm-833eb68a1f18f361b2429fe12d13533cc9e3debe.tar.bz2
llvm-833eb68a1f18f361b2429fe12d13533cc9e3debe.tar.xz
Add new option to leave asm names alone
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30149 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Mangler.h')
-rw-r--r--include/llvm/Support/Mangler.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/llvm/Support/Mangler.h b/include/llvm/Support/Mangler.h
index ac7deadf8b..b6f9839fab 100644
--- a/include/llvm/Support/Mangler.h
+++ b/include/llvm/Support/Mangler.h
@@ -35,6 +35,10 @@ 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;
+
/// Memo - This is used to remember the name that we assign a value.
///
std::map<const Value*, std::string> Memo;
@@ -66,6 +70,10 @@ public:
/// strings for assembler labels.
void setUseQuotes(bool Val) { UseQuotes = Val; }
+ /// setPreserveAsmNames - If the mangler should not strip off the asm name
+ /// identifier (\001), this should be set.
+ 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.