diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2009-01-15 20:18:42 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2009-01-15 20:18:42 +0000 |
commit | a168fc98dedfc8cac01c34f84b699fe5f48ad76d (patch) | |
tree | ebdd7fc62b19bc9bdb7cc03563fd817d3943f17e /include/llvm/Support/Mangler.h | |
parent | ef4bf3b063ea20732c4647c6f2d5d77caf907578 (diff) | |
download | external_llvm-a168fc98dedfc8cac01c34f84b699fe5f48ad76d.zip external_llvm-a168fc98dedfc8cac01c34f84b699fe5f48ad76d.tar.gz external_llvm-a168fc98dedfc8cac01c34f84b699fe5f48ad76d.tar.bz2 |
Add the private linkage.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62279 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Mangler.h')
-rw-r--r-- | include/llvm/Support/Mangler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Support/Mangler.h b/include/llvm/Support/Mangler.h index 771c09e..7820b85 100644 --- a/include/llvm/Support/Mangler.h +++ b/include/llvm/Support/Mangler.h @@ -29,6 +29,7 @@ class Mangler { /// symbol is marked as not needing this prefix. const char *Prefix; + const char *PrivatePrefix; /// UseQuotes - If this is set, the target accepts global names in quotes, /// e.g. "foo bar" is a legal name. This syntax is used instead of escaping /// the space character. By default, this is false. @@ -58,7 +59,7 @@ public: // Mangler ctor - if a prefix is specified, it will be prepended onto all // symbols. - Mangler(Module &M, const char *Prefix = ""); + Mangler(Module &M, const char *Prefix = "", const char *privatePrefix = ""); /// setUseQuotes - If UseQuotes is set to true, this target accepts quoted /// strings for assembler labels. |