mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-01 12:24:24 +00:00
Bug fix. Only safe to perform extension uses optimization if the source of extension is also defined in the same BB as the extension.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44896 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -929,6 +929,11 @@ bool CodeGenPrepare::OptimizeExtUses(Instruction *I) {
|
|||||||
if (Src->hasOneUse())
|
if (Src->hasOneUse())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// Only safe to perform the optimization if the source is also defined in
|
||||||
|
// this block.
|
||||||
|
if (DefBB != cast<Instruction>(Src)->getParent())
|
||||||
|
return false;
|
||||||
|
|
||||||
bool DefIsLiveOut = false;
|
bool DefIsLiveOut = false;
|
||||||
for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
|
for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
|
||||||
UI != E; ++UI) {
|
UI != E; ++UI) {
|
||||||
|
Reference in New Issue
Block a user