Displaying 1 result from an estimated 1 matches for "regsliveatexit".
2013 Jun 04
0
[LLVMdev] MachineBasicBlock::addLiveIn errors
...void addLiveIn(unsigned Reg) {
> assert(!isLiveIn(Reg));
> LiveIns.push_back(Reg);
> }
>
>
==== //dwarc/Tools/MetaWare/Toolset/main/dev/llvm/lib/CodeGen/BranchFolding.cpp#8 - /remote/arctools/marksl/marksl_1/llvm/lib/CodeGen/BranchFolding.cpp ====
386c386
< if (RegsLiveAtExit[i])
---
> if (RegsLiveAtExit[i] && !NewMBB->isLiveIn(i))
1718,1719c1718,1721
< TBB->addLiveIn(Def);
< FBB->addLiveIn(Def);
---
> if (!TBB->isLiveIn(Def)) //SYNOPSYS
> TBB->addLiveIn(Def);
> if (!FBB->isLiveIn(Def)...