From 1df633821b9994a132ea329e5b04a9a2d0580de3 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 9 Apr 2005 03:21:50 +0000 Subject: [PATCH] Add a new node git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21162 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/SelectionDAGNodes.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index adb85f0e963..2011eb87710 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -216,6 +216,13 @@ namespace ISD { // to if the condition is true. BRCOND, + // BRCONDTWOWAY - Two-way conditional branch. The first operand is the + // chain, the second is the condition, the third is the block to branch to + // if true, and the forth is the block to branch to if false. Targets + // usually do not implement this, preferring to have legalize demote the + // operation to BRCOND/BR pairs when necessary. + BRCONDTWOWAY, + // RET - Return from function. The first operand is the chain, // and any subsequent operands are the return values for the // function. This operation can have variable number of operands.