diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2005-04-22 04:13:13 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2005-04-22 04:13:13 +0000 |
commit | 88e7b7288ae9cb23dc85341a520062e7903ba479 (patch) | |
tree | df98b71efed67e449ae4bccbe6740baf74b47c75 /llvm/utils/TableGen/Record.cpp | |
parent | 5191b4b2d02f2f3c2d3f496e0b822ebab84e0781 (diff) | |
download | bcm5719-llvm-88e7b7288ae9cb23dc85341a520062e7903ba479.tar.gz bcm5719-llvm-88e7b7288ae9cb23dc85341a520062e7903ba479.zip |
Eliminate tabs and trailing spaces
llvm-svn: 21441
Diffstat (limited to 'llvm/utils/TableGen/Record.cpp')
-rw-r--r-- | llvm/utils/TableGen/Record.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/utils/TableGen/Record.cpp b/llvm/utils/TableGen/Record.cpp index c6bf403617c..16b902b562e 100644 --- a/llvm/utils/TableGen/Record.cpp +++ b/llvm/utils/TableGen/Record.cpp @@ -90,7 +90,7 @@ Init *BitsRecTy::convertValue(TypedInit *VI) { if (BRT->Size == Size) { BitsInit *Ret = new BitsInit(Size); for (unsigned i = 0; i != Size; ++i) - Ret->setBit(i, new VarBitInit(VI, i)); + Ret->setBit(i, new VarBitInit(VI, i)); return Ret; } if (Size == 1 && dynamic_cast<BitRecTy*>(VI->getType())) { @@ -768,13 +768,13 @@ std::ostream &llvm::operator<<(std::ostream &OS, const RecordKeeper &RK) { OS << "------------- Classes -----------------\n"; const std::map<std::string, Record*> &Classes = RK.getClasses(); for (std::map<std::string, Record*>::const_iterator I = Classes.begin(), - E = Classes.end(); I != E; ++I) + E = Classes.end(); I != E; ++I) OS << "class " << *I->second; OS << "------------- Defs -----------------\n"; const std::map<std::string, Record*> &Defs = RK.getDefs(); for (std::map<std::string, Record*>::const_iterator I = Defs.begin(), - E = Defs.end(); I != E; ++I) + E = Defs.end(); I != E; ++I) OS << "def " << *I->second; return OS; } |