mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Change opLabel numbers for Not and BNot.
Also, these tree nodes are now binary, not unary. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3344 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
85af131d9e
commit
917d551969
@ -47,7 +47,8 @@ const int BrCondOp = 100 + Instruction::Br;
|
||||
const int BAndOp = 100 + Instruction::And;
|
||||
const int BOrOp = 100 + Instruction::Or;
|
||||
const int BXorOp = 100 + Instruction::Xor;
|
||||
const int BNotOp = 100 + Instruction::Not;
|
||||
const int BNotOp = 200 + Instruction::Xor;
|
||||
const int NotOp = 300 + Instruction::Xor;
|
||||
|
||||
const int SetCCOp = 100 + Instruction::SetEQ;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user