mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Add artificial PRED_BAD to PPC::Predicate enumeration.
Allows returning a PPC::Predicate from a function with a no-predicate value possible. Preparatory patch for fast-isel on PPC64 ELF. No behavioral change intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183841 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c3907f387f
commit
f69ead4651
@ -32,7 +32,8 @@ namespace PPC {
|
||||
PRED_GT = (1 << 5) | 12,
|
||||
PRED_NE = (2 << 5) | 4,
|
||||
PRED_UN = (3 << 5) | 12,
|
||||
PRED_NU = (3 << 5) | 4
|
||||
PRED_NU = (3 << 5) | 4,
|
||||
PRED_BAD = 0
|
||||
};
|
||||
|
||||
/// Invert the specified predicate. != -> ==, < -> >=.
|
||||
|
Loading…
x
Reference in New Issue
Block a user