Convert tabs to spaces

llvm-svn: 16988
This commit is contained in:
Misha Brukman 2004-10-14 18:47:56 +00:00
parent 44e34a155c
commit e20eb48c53

View File

@ -124,13 +124,13 @@ public:
} }
const MachineInstrBuilder &addGlobalAddress(GlobalValue *GV, const MachineInstrBuilder &addGlobalAddress(GlobalValue *GV,
bool isPCRelative = false) const { bool isPCRelative = false) const {
MI->addGlobalAddressOperand(GV, isPCRelative); MI->addGlobalAddressOperand(GV, isPCRelative);
return *this; return *this;
} }
const MachineInstrBuilder &addExternalSymbol(const std::string &Name, const MachineInstrBuilder &addExternalSymbol(const std::string &Name,
bool isPCRelative = false) const{ bool isPCRelative = false) const{
MI->addExternalSymbolOperand(Name, isPCRelative); MI->addExternalSymbolOperand(Name, isPCRelative);
return *this; return *this;
} }