Delete trailing white space.
authorRafael Espindola <rafael.espindola@gmail.com>
Fri, 9 May 2014 14:31:07 +0000 (14:31 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Fri, 9 May 2014 14:31:07 +0000 (14:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208415 91177308-0d34-0410-b5e6-96231b3b80d8

lib/IR/Globals.cpp

index f97602015f1437bb20bce85072ba9f286975ecc4..9303343a908b9fdab5ceefd8409e91bc01cc7d7f 100644 (file)
@@ -104,7 +104,7 @@ bool GlobalValue::isDeclaration() const {
   assert(isa<GlobalAlias>(this));
   return false;
 }
-  
+
 //===----------------------------------------------------------------------===//
 // GlobalVariable Implementation
 //===----------------------------------------------------------------------===//
@@ -146,9 +146,9 @@ GlobalVariable::GlobalVariable(Module &M, Type *Ty, bool constant,
            "Initializer should be the same type as the GlobalVariable!");
     Op<0>() = InitVal;
   }
-  
+
   LeakDetector::addGarbageObject(this);
-  
+
   if (Before)
     Before->getParent()->getGlobalList().insert(Before, this);
   else
@@ -253,7 +253,7 @@ void GlobalAlias::eraseFromParent() {
 void GlobalAlias::setAliasee(Constant *Aliasee) {
   assert((!Aliasee || Aliasee->getType() == getType()) &&
          "Alias and aliasee types should match!");
-  
+
   setOperand(0, Aliasee);
 }