diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-07-15 04:42:49 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-07-15 04:42:49 +0000 | 
| commit | fe78558f9537e24ed8edb11ee56afb8b3214c801 (patch) | |
| tree | 84f801777db7ae9c257b8e6865abfac58aa1a94b /llvm/lib/CodeGen | |
| parent | a2268c0b19f5411c7992b48334b14d3d17c8df1b (diff) | |
| download | bcm5719-llvm-fe78558f9537e24ed8edb11ee56afb8b3214c801.tar.gz bcm5719-llvm-fe78558f9537e24ed8edb11ee56afb8b3214c801.zip | |
remove printSuffixedName.
llvm-svn: 75742
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 32 | 
1 files changed, 5 insertions, 27 deletions
| diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 7ac780f687a..8c6ed504d0d 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/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) { | 

