mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Add UADDO and SADDO nodes. These will be used for determining an overflow
condition in an addition operation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59760 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -249,7 +249,14 @@ namespace ISD {
|
||||
// to them to be chained together for add and sub of arbitrarily large
|
||||
// values.
|
||||
ADDE, SUBE,
|
||||
|
||||
|
||||
// Overflow-aware nodes for arithmetic operations. These nodes take two
|
||||
// operands: the normal lhs and rhs to the add. They produce two results:
|
||||
// the normal result of the add, and a flag indicating whether an overflow
|
||||
// occured. These nodes are generated from the llvm.[su]add.with.overflow
|
||||
// intrinsics. They are lowered by target-dependent code.
|
||||
SADDO, UADDO,
|
||||
|
||||
// Simple binary floating point operators.
|
||||
FADD, FSUB, FMUL, FDIV, FREM,
|
||||
|
||||
|
Reference in New Issue
Block a user