summaryrefslogtreecommitdiff
path: root/lib/IR
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-05-09 14:31:07 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-05-09 14:31:07 +0000
commitf992930d5e51d5b90c885678f2b049d5f3a58a18 (patch)
treed8545294e137ab7d6c9890a231de0c2267fd2e9e /lib/IR
parent7ef85447c950ef801414251a2ce49d2564cbf5da (diff)
downloadllvm-f992930d5e51d5b90c885678f2b049d5f3a58a18.tar.gz
llvm-f992930d5e51d5b90c885678f2b049d5f3a58a18.tar.bz2
llvm-f992930d5e51d5b90c885678f2b049d5f3a58a18.tar.xz
Delete trailing white space.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208415 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/IR')
-rw-r--r--lib/IR/Globals.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/IR/Globals.cpp b/lib/IR/Globals.cpp
index f97602015f..9303343a90 100644
--- a/lib/IR/Globals.cpp
+++ b/lib/IR/Globals.cpp
@@ -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);
}