mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 04:32:19 +00:00
Use different op labels for bitwise logical operations and boolean logical
operations in BURG input trees. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1189 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e8f1e44fd7
commit
df2ee6cff2
@ -51,6 +51,11 @@ const int LabelNodeOp = 100;
|
||||
const int RetValueOp = 100 + Instruction::Ret;
|
||||
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 SetCCOp = 100 + Instruction::SetEQ;
|
||||
|
||||
const int AllocaN = 100 + Instruction::Alloca; // 121
|
||||
|
Loading…
x
Reference in New Issue
Block a user