Add a new node

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21162 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-04-09 03:21:50 +00:00
parent e88aa5b4d1
commit 1df633821b

View File

@ -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.