aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/AsmPrinter.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-07-08 16:40:43 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-07-08 16:40:43 +0000
commitab8faba2fb17e540751adf75161a25b18c94b818 (patch)
tree7ce0b4091983e87e21e351bf580b99ba05738437 /include/llvm/CodeGen/AsmPrinter.h
parent7220b814ed6f432d1d31d444b65e0c3b120942df (diff)
Unbreak C++ tests on x86 Darwin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53237 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/AsmPrinter.h')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 3514af7c81..e41d8dca29 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -351,8 +351,9 @@ namespace llvm {
/// printSuffixedName - This prints a name with preceding
/// getPrivateGlobalPrefix and the specified suffix, handling quoted names
/// correctly.
- void printSuffixedName(const char *Name, const char* Suffix);
- void printSuffixedName(std::string &Name, const char* Suffix);
+ void printSuffixedName(const char *Name, const char *Suffix,
+ const char *Prefix = 0);
+ void printSuffixedName(const std::string &Name, const char* Suffix);
private:
void EmitLLVMUsedList(Constant *List);