Displaying 2 results from an estimated 2 matches for "getstructvaluest".
2009 Nov 10
2
[LLVMdev] Bugfix: SCCP
The SCCP pass was failing an assertion that I traced back to
SCCPSolver::visitExtractValueInst. getStructValueState was used on the
aggregate operand even if it had no structure type. I added a check to
use getStructValueState for structs and getValueState for other
operands.
This behavior was introduced in r85793. Please note that I'm not sure
whether my changes correctly address this problem. In case t...
2009 Nov 10
0
[LLVMdev] Bugfix: SCCP
On Nov 10, 2009, at 6:58 AM, Stephan Reiter wrote:
> The SCCP pass was failing an assertion that I traced back to
> SCCPSolver::visitExtractValueInst. getStructValueState was used on the
> aggregate operand even if it had no structure type. I added a check to
> use getStructValueState for structs and getValueState for other
> operands.
>
> This behavior was introduced in r85793. Please note that I'm not sure
> whether my changes correctly ad...