Remove unnecessary llvm:: qualification.

llvm-svn: 202316
This commit is contained in:
Eric Christopher 2014-02-26 23:27:16 +00:00
parent 323d31a625
commit 1b1ce405c8
5 changed files with 16 additions and 16 deletions

View File

@ -39,7 +39,7 @@ inline bool operator<(UnicodeCharRange Range, uint32_t Value) {
/// array. /// array.
class UnicodeCharSet { class UnicodeCharSet {
public: public:
typedef llvm::ArrayRef<UnicodeCharRange> CharRanges; typedef ArrayRef<UnicodeCharRange> CharRanges;
/// \brief Constructs a UnicodeCharSet instance from an array of /// \brief Constructs a UnicodeCharSet instance from an array of
/// UnicodeCharRanges. /// UnicodeCharRanges.
@ -66,17 +66,17 @@ private:
for (CharRanges::const_iterator I = Ranges.begin(), E = Ranges.end(); for (CharRanges::const_iterator I = Ranges.begin(), E = Ranges.end();
I != E; ++I) { I != E; ++I) {
if (I != Ranges.begin() && Prev >= I->Lower) { if (I != Ranges.begin() && Prev >= I->Lower) {
DEBUG(llvm::dbgs() << "Upper bound 0x"); DEBUG(dbgs() << "Upper bound 0x");
DEBUG(llvm::dbgs().write_hex(Prev)); DEBUG(dbgs().write_hex(Prev));
DEBUG(llvm::dbgs() << " should be less than succeeding lower bound 0x"); DEBUG(dbgs() << " should be less than succeeding lower bound 0x");
DEBUG(llvm::dbgs().write_hex(I->Lower) << "\n"); DEBUG(dbgs().write_hex(I->Lower) << "\n");
return false; return false;
} }
if (I->Upper < I->Lower) { if (I->Upper < I->Lower) {
DEBUG(llvm::dbgs() << "Upper bound 0x"); DEBUG(dbgs() << "Upper bound 0x");
DEBUG(llvm::dbgs().write_hex(I->Lower)); DEBUG(dbgs().write_hex(I->Lower));
DEBUG(llvm::dbgs() << " should not be less than lower bound 0x"); DEBUG(dbgs() << " should not be less than lower bound 0x");
DEBUG(llvm::dbgs().write_hex(I->Upper) << "\n"); DEBUG(dbgs().write_hex(I->Upper) << "\n");
return false; return false;
} }
Prev = I->Upper; Prev = I->Upper;

View File

@ -1180,7 +1180,7 @@ bool CallAnalyzer::analyzeCall(CallSite CS) {
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
/// \brief Dump stats about this call's analysis. /// \brief Dump stats about this call's analysis.
void CallAnalyzer::dump() { void CallAnalyzer::dump() {
#define DEBUG_PRINT_STAT(x) llvm::dbgs() << " " #x ": " << x << "\n" #define DEBUG_PRINT_STAT(x) dbgs() << " " #x ": " << x << "\n"
DEBUG_PRINT_STAT(NumConstantArgs); DEBUG_PRINT_STAT(NumConstantArgs);
DEBUG_PRINT_STAT(NumConstantOffsetPtrArgs); DEBUG_PRINT_STAT(NumConstantOffsetPtrArgs);
DEBUG_PRINT_STAT(NumAllocaArgs); DEBUG_PRINT_STAT(NumAllocaArgs);

View File

@ -454,7 +454,7 @@ void DwarfUnit::addRegisterOp(DIELoc *TheDie, unsigned Reg) {
} }
if (DWReg < 0) { if (DWReg < 0) {
DEBUG(llvm::dbgs() << "Invalid Dwarf register number.\n"); DEBUG(dbgs() << "Invalid Dwarf register number.\n");
addUInt(TheDie, dwarf::DW_FORM_data1, dwarf::DW_OP_nop); addUInt(TheDie, dwarf::DW_FORM_data1, dwarf::DW_OP_nop);
return; return;
} }

View File

@ -185,7 +185,7 @@ public:
// Print passes managed by this manager // Print passes managed by this manager
void dumpPassStructure(unsigned Offset) { void dumpPassStructure(unsigned Offset) {
llvm::dbgs().indent(Offset*2) << "BasicBlockPass Manager\n"; dbgs().indent(Offset*2) << "BasicBlockPass Manager\n";
for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
BasicBlockPass *BP = getContainedPass(Index); BasicBlockPass *BP = getContainedPass(Index);
BP->dumpPassStructure(Offset + 1); BP->dumpPassStructure(Offset + 1);
@ -346,7 +346,7 @@ public:
// Print passes managed by this manager // Print passes managed by this manager
void dumpPassStructure(unsigned Offset) { void dumpPassStructure(unsigned Offset) {
llvm::dbgs().indent(Offset*2) << "ModulePass Manager\n"; dbgs().indent(Offset*2) << "ModulePass Manager\n";
for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
ModulePass *MP = getContainedPass(Index); ModulePass *MP = getContainedPass(Index);
MP->dumpPassStructure(Offset + 1); MP->dumpPassStructure(Offset + 1);
@ -1132,7 +1132,7 @@ void PMDataManager::dumpLastUses(Pass *P, unsigned Offset) const{
for (SmallVectorImpl<Pass *>::iterator I = LUses.begin(), for (SmallVectorImpl<Pass *>::iterator I = LUses.begin(),
E = LUses.end(); I != E; ++I) { E = LUses.end(); I != E; ++I) {
llvm::dbgs() << "--" << std::string(Offset*2, ' '); dbgs() << "--" << std::string(Offset*2, ' ');
(*I)->dumpPassStructure(0); (*I)->dumpPassStructure(0);
} }
} }

View File

@ -163,9 +163,9 @@ void Twine::printRepr(raw_ostream &OS) const {
} }
void Twine::dump() const { void Twine::dump() const {
print(llvm::dbgs()); print(dbgs());
} }
void Twine::dumpRepr() const { void Twine::dumpRepr() const {
printRepr(llvm::dbgs()); printRepr(dbgs());
} }