summaryrefslogtreecommitdiffstats
path: root/llvm/lib/IR/Globals.cpp
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
commita03c599666ca9728e812f299a758a8dd2d7dfaa1 (patch)
treee1515aca090c1cbf492efe336e8aeb96a259e0e7 /llvm/lib/IR/Globals.cpp
parente57d866ed06a8a3724de062325289f6dd72d7f69 (diff)
downloadbcm5719-llvm-a03c599666ca9728e812f299a758a8dd2d7dfaa1.tar.gz
bcm5719-llvm-a03c599666ca9728e812f299a758a8dd2d7dfaa1.zip
Delete trailing white space.
llvm-svn: 208415
Diffstat (limited to 'llvm/lib/IR/Globals.cpp')
-rw-r--r--llvm/lib/IR/Globals.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/IR/Globals.cpp b/llvm/lib/IR/Globals.cpp
index f97602015f1..9303343a908 100644
--- a/llvm/lib/IR/Globals.cpp
+++ b/llvm/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);
}
OpenPOWER on IntegriCloud