aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-15 04:42:49 +0000
committerChris Lattner <sabre@nondot.org>2009-07-15 04:42:49 +0000
commitf1cfea2dbfd6ebc0008ecd2d37a1c91058bbfdd1 (patch)
treeefd65cdd84bc7e86458746eeb44590803b6e5e7a
parentb1ccad3b0d291a089aac0e9992d320d65cc27dce (diff)
downloadexternal_llvm-f1cfea2dbfd6ebc0008ecd2d37a1c91058bbfdd1.zip
external_llvm-f1cfea2dbfd6ebc0008ecd2d37a1c91058bbfdd1.tar.gz
external_llvm-f1cfea2dbfd6ebc0008ecd2d37a1c91058bbfdd1.tar.bz2
remove printSuffixedName.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75742 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h7
-rw-r--r--lib/CodeGen/AsmPrinter/AsmPrinter.cpp32
2 files changed, 5 insertions, 34 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 1a43f5e..ad46013 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -395,13 +395,6 @@ namespace llvm {
/// specified type.
void printDataDirective(const Type *type, unsigned AddrSpace = 0);
- /// printSuffixedName - This prints a name with preceding
- /// getPrivateGlobalPrefix and the specified suffix, handling quoted names
- /// correctly.
- void printSuffixedName(const char *Name, const char *Suffix,
- const char *Prefix = 0);
- void printSuffixedName(const std::string &Name, const char* Suffix);
-
/// printVisibility - This prints visibility information about symbol, if
/// this is suported by the target.
void printVisibility(const std::string& Name, unsigned Visibility) const;
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index 7ac780f..8c6ed50 100644
--- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -1648,6 +1648,11 @@ void AsmPrinter::printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
void AsmPrinter::printDataDirective(const Type *type, unsigned AddrSpace) {
const TargetData *TD = TM.getTargetData();
switch (type->getTypeID()) {
+ case Type::FloatTyID: case Type::DoubleTyID:
+ case Type::X86_FP80TyID: case Type::FP128TyID: case Type::PPC_FP128TyID:
+ assert(0 && "Should have already output floating point constant.");
+ default:
+ assert(0 && "Can't handle printing this type of thing");
case Type::IntegerTyID: {
unsigned BitWidth = cast<IntegerType>(type)->getBitWidth();
if (BitWidth <= 8)
@@ -1678,36 +1683,9 @@ void AsmPrinter::printDataDirective(const Type *type, unsigned AddrSpace) {
O << TAI->getData32bitsDirective(AddrSpace);
}
break;
- case Type::FloatTyID: case Type::DoubleTyID:
- case Type::X86_FP80TyID: case Type::FP128TyID: case Type::PPC_FP128TyID:
- assert (0 && "Should have already output floating point constant.");
- default:
- assert (0 && "Can't handle printing this type of thing");
- break;
}
}
-void AsmPrinter::printSuffixedName(const char *Name, const char *Suffix,
- const char *Prefix) {
- if (Name[0]=='\"')
- O << '\"';
- O << TAI->getPrivateGlobalPrefix();
- if (Prefix) O << Prefix;
- if (Name[0]=='\"')
- O << '\"';
- if (Name[0]=='\"')
- O << Name[1];
- else
- O << Name;
- O << Suffix;
- if (Name[0]=='\"')
- O << '\"';
-}
-
-void AsmPrinter::printSuffixedName(const std::string &Name, const char* Suffix) {
- printSuffixedName(Name.c_str(), Suffix);
-}
-
void AsmPrinter::printVisibility(const std::string& Name,
unsigned Visibility) const {
if (Visibility == GlobalValue::HiddenVisibility) {