mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
R600: Add ALUInst bit to tablegen definitions v2
v2: - Remove functions left over from a previous rebase. Reviewed-by: Vincent Lejeune<vljn at ovi.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185160 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -133,9 +133,7 @@ bool R600InstrInfo::isCubeOp(unsigned Opcode) const {
|
||||
bool R600InstrInfo::isALUInstr(unsigned Opcode) const {
|
||||
unsigned TargetFlags = get(Opcode).TSFlags;
|
||||
|
||||
return ((TargetFlags & R600_InstFlag::OP1) |
|
||||
(TargetFlags & R600_InstFlag::OP2) |
|
||||
(TargetFlags & R600_InstFlag::OP3));
|
||||
return (TargetFlags & R600_InstFlag::ALU_INST);
|
||||
}
|
||||
|
||||
bool R600InstrInfo::isTransOnly(unsigned Opcode) const {
|
||||
|
Reference in New Issue
Block a user