mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-03 00:33:09 +00:00
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:
parent
e88aa5b4d1
commit
1df633821b
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user