Convert tabs to spaces
authorMisha Brukman <brukman+llvm@gmail.com>
Thu, 14 Oct 2004 18:47:56 +0000 (18:47 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Thu, 14 Oct 2004 18:47:56 +0000 (18:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16988 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineInstrBuilder.h

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