search for: falsee

Displaying 2 results from an estimated 2 matches for "falsee".

Did you mean: false
2013 May 13
3
[LLVMdev] Q: When is a boolean not a boolean?
...nd->getContext()); BasicBlockEdge TrueE(Parent, TrueSucc); Changed |= propagateEquality(BranchCond, TrueVal, TrueE); - Value *FalseVal = ConstantInt::getFalse(FalseSucc->getContext()); + Value *FalseVal = ConstantInt::getFalse(BranchCond->getContext()); BasicBlockEdge FalseE(Parent, FalseSucc); Changed |= propagateEquality(BranchCond, FalseVal, FalseE); Any other ideas about where I should look for the root problem? Is there any better documentation on how to deal with multiple LLVMContext instances? I'm primarily creating multiple contexts to make sure my n...
2013 May 13
0
[LLVMdev] Q: When is a boolean not a boolean?
...BasicBlockEdge TrueE(Parent, TrueSucc); > Changed |= propagateEquality(BranchCond, TrueVal, TrueE); > > - Value *FalseVal = ConstantInt::getFalse(FalseSucc->getContext()); > + Value *FalseVal = ConstantInt::getFalse(BranchCond->getContext()); > BasicBlockEdge FalseE(Parent, FalseSucc); > Changed |= propagateEquality(BranchCond, FalseVal, FalseE); > > Any other ideas about where I should look for the root problem? Is there > any better documentation on how to deal with multiple LLVMContext instances? > > I'm primarily creating multip...