[llvm] r208415 - Delete trailing white space.
Rafael Espindola
rafael.espindola at gmail.com
Fri May 9 07:31:07 PDT 2014
Author: rafael
Date: Fri May 9 09:31:07 2014
New Revision: 208415
URL: http://llvm.org/viewvc/llvm-project?rev=208415&view=rev
Log:
Delete trailing white space.
Modified:
llvm/trunk/lib/IR/Globals.cpp
Modified: llvm/trunk/lib/IR/Globals.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/Globals.cpp?rev=208415&r1=208414&r2=208415&view=diff
==============================================================================
--- llvm/trunk/lib/IR/Globals.cpp (original)
+++ llvm/trunk/lib/IR/Globals.cpp Fri May 9 09:31:07 2014
@@ -104,7 +104,7 @@ bool GlobalValue::isDeclaration() const
assert(isa<GlobalAlias>(this));
return false;
}
-
+
//===----------------------------------------------------------------------===//
// GlobalVariable Implementation
//===----------------------------------------------------------------------===//
@@ -146,9 +146,9 @@ GlobalVariable::GlobalVariable(Module &M
"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);
}
More information about the llvm-commits
mailing list