Unbreak C++ tests on x86 Darwin.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53237 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng
2008-07-08 16:40:43 +00:00
parent 7220b814ed
commit ab8faba2fb
3 changed files with 18 additions and 9 deletions

View File

@ -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);