mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-11 11:34:02 +00:00
This loop executed exactly one time, turn it into straightline code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4159 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
700d48806b
commit
9e932bd566
@ -117,15 +117,13 @@ static struct PerModuleInfo {
|
||||
// Loop over all of the uses of the GlobalValue. The only thing they are
|
||||
// allowed to be is ConstantPointerRef's.
|
||||
assert(OldGV->use_size() == 1 && "Only one reference should exist!");
|
||||
while (!OldGV->use_empty()) {
|
||||
User *U = OldGV->use_back(); // Must be a ConstantPointerRef...
|
||||
ConstantPointerRef *CPR = cast<ConstantPointerRef>(U);
|
||||
assert(CPR->getValue() == OldGV && "Something isn't happy");
|
||||
User *U = OldGV->use_back(); // Must be a ConstantPointerRef...
|
||||
ConstantPointerRef *CPR = cast<ConstantPointerRef>(U);
|
||||
|
||||
// Change the const pool reference to point to the real global variable
|
||||
// now. This should drop a use from the OldGV.
|
||||
CPR->mutateReferences(OldGV, GV);
|
||||
}
|
||||
// Change the const pool reference to point to the real global variable
|
||||
// now. This should drop a use from the OldGV.
|
||||
CPR->mutateReferences(OldGV, GV);
|
||||
assert(OldGV->use_empty() && "All uses should be gone now!");
|
||||
|
||||
// Remove OldGV from the module...
|
||||
CurrentModule->getGlobalList().remove(OldGV);
|
||||
|
Loading…
x
Reference in New Issue
Block a user