Displaying 2 results from an estimated 2 matches for "truesucc".
2013 May 13
3
[LLVMdev] Q: When is a boolean not a boolean?
...fe cycles, and this is my
first real look at llvm's source.
This patch at least makes my problem go away;
@@ -2195,11 +2200,11 @@ bool GVN::processInstruction(Instruction *I) {
BasicBlock *Parent = BI->getParent();
bool Changed = false;
- Value *TrueVal = ConstantInt::getTrue(TrueSucc->getContext());
+ Value *TrueVal = ConstantInt::getTrue(BranchCond->getContext());
BasicBlockEdge TrueE(Parent, TrueSucc);
Changed |= propagateEquality(BranchCond, TrueVal, TrueE);
- Value *FalseVal = ConstantInt::getFalse(FalseSucc->getContext());
+ Value *FalseVal = C...
2013 May 13
0
[LLVMdev] Q: When is a boolean not a boolean?
...ok at llvm's source.
>
> This patch at least makes my problem go away;
>
> @@ -2195,11 +2200,11 @@ bool GVN::processInstruction(Instruction *I) {
> BasicBlock *Parent = BI->getParent();
> bool Changed = false;
>
> - Value *TrueVal = ConstantInt::getTrue(TrueSucc->getContext());
> + Value *TrueVal = ConstantInt::getTrue(BranchCond->getContext());
> BasicBlockEdge TrueE(Parent, TrueSucc);
> Changed |= propagateEquality(BranchCond, TrueVal, TrueE);
>
> - Value *FalseVal = ConstantInt::getFalse(FalseSucc->getContext())...