mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
handle the case where a node can become ready to process
multiple times due to a RAUW. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46680 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
42bd25f8ec
commit
fcd8e9e3a2
@ -234,7 +234,8 @@ namespace {
|
||||
// Node updates can mean pretty much anything. It is possible that an
|
||||
// operand was set to something already processed (f.e.) in which case
|
||||
// this node could become ready. Recompoute its flags.
|
||||
DTL.ReanalyzeNodeFlags(N);
|
||||
if (N->getNodeId() != DAGTypeLegalizer::ReadyToProcess)
|
||||
DTL.ReanalyzeNodeFlags(N);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
@ -40,7 +40,7 @@ namespace llvm {
|
||||
class VISIBILITY_HIDDEN DAGTypeLegalizer {
|
||||
TargetLowering &TLI;
|
||||
SelectionDAG &DAG;
|
||||
|
||||
public:
|
||||
// NodeIDFlags - This pass uses the NodeID on the SDNodes to hold information
|
||||
// about the state of the node. The enum has all the values.
|
||||
enum NodeIDFlags {
|
||||
@ -57,7 +57,7 @@ class VISIBILITY_HIDDEN DAGTypeLegalizer {
|
||||
|
||||
// 1+ - This is a node which has this many unlegalized operands.
|
||||
};
|
||||
|
||||
private:
|
||||
enum LegalizeAction {
|
||||
Legal, // The target natively supports this type.
|
||||
Promote, // This type should be executed in a larger type.
|
||||
|
Loading…
x
Reference in New Issue
Block a user