mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Implement new Instruction::isRelational method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10810 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
925e3474bd
commit
3a534f200a
@ -148,6 +148,22 @@ bool Instruction::isCommutative(unsigned op) {
|
||||
}
|
||||
}
|
||||
|
||||
/// isRelational - Return true if the instruction is a Set* instruction:
|
||||
///
|
||||
bool Instruction::isRelational(unsigned op) {
|
||||
switch (op) {
|
||||
case SetEQ:
|
||||
case SetNE:
|
||||
case SetLT:
|
||||
case SetGT:
|
||||
case SetLE:
|
||||
case SetGE:
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// isTrappingInstruction - Return true if the instruction may trap.
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user