mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-12 01:25:49 +00:00
Delete trailing white space.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208415 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -104,7 +104,7 @@ bool GlobalValue::isDeclaration() const {
|
|||||||
assert(isa<GlobalAlias>(this));
|
assert(isa<GlobalAlias>(this));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// GlobalVariable Implementation
|
// GlobalVariable Implementation
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
@@ -146,9 +146,9 @@ GlobalVariable::GlobalVariable(Module &M, Type *Ty, bool constant,
|
|||||||
"Initializer should be the same type as the GlobalVariable!");
|
"Initializer should be the same type as the GlobalVariable!");
|
||||||
Op<0>() = InitVal;
|
Op<0>() = InitVal;
|
||||||
}
|
}
|
||||||
|
|
||||||
LeakDetector::addGarbageObject(this);
|
LeakDetector::addGarbageObject(this);
|
||||||
|
|
||||||
if (Before)
|
if (Before)
|
||||||
Before->getParent()->getGlobalList().insert(Before, this);
|
Before->getParent()->getGlobalList().insert(Before, this);
|
||||||
else
|
else
|
||||||
@@ -253,7 +253,7 @@ void GlobalAlias::eraseFromParent() {
|
|||||||
void GlobalAlias::setAliasee(Constant *Aliasee) {
|
void GlobalAlias::setAliasee(Constant *Aliasee) {
|
||||||
assert((!Aliasee || Aliasee->getType() == getType()) &&
|
assert((!Aliasee || Aliasee->getType() == getType()) &&
|
||||||
"Alias and aliasee types should match!");
|
"Alias and aliasee types should match!");
|
||||||
|
|
||||||
setOperand(0, Aliasee);
|
setOperand(0, Aliasee);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user