diff options
author | Chris Lattner <sabre@nondot.org> | 2005-01-07 22:49:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-01-07 22:49:57 +0000 |
commit | 5351e9b172962a4f51e6d3b12018dd2de34b2f97 (patch) | |
tree | eee9e70001373040096f9e1a9ef04dfe27a18bd6 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 4287d5e355c7dafcb8d674a236eabcccb895c892 (diff) |
Fold conditional branches on constants away.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19360 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 6ab1d45957..e917350f8c 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -727,6 +727,12 @@ SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT, } break; + case ISD::BRCOND: + if (N2C) + if (N2C->getValue()) // Unconditional branch + return getNode(ISD::BR, MVT::Other, N1, N3); + else + return N1; // Never-taken branch } SDNode *N = new SDNode(Opcode, N1, N2, N3); |