search for: replacedvalues

Displaying 1 result from an estimated 1 matches for "replacedvalues".

Did you mean: replacedvalnos
2012 Aug 16
1
[LLVMdev] DAGTypeLegalizer::RemapValue failure
...I'm debugging some ll test that fails with an assertion in "void DAGTypeLegalizer::RemapValue(SDValue &N)" because it does not expect that a remap to a new node exists. However looking at the code for a while this seems to be a valid case. I see that many times nodes are added to ReplacedValues map as a value when their NodeID is 0, and therefore they might become a NewNode later. As soon as they become NewNode they are analyzed in AnalyzeNewNode() and in this process, which recurs through the new node operands, it's possible to reach RemapValue and find there the node as a NewNode. T...