[PowerPC] Remove PRED_BAD from PPC::Predicate enumeration.

I'm taking David Blaikie's suggestion to use an
Optional<PPC::Predicate> return value instead.  That's the right
solution for this problem.  Thanks for pointing out that possibility!

llvm-svn: 183858
This commit is contained in:
Bill Schmidt 2013-06-12 20:22:24 +00:00
parent 30feecd2a7
commit 4fcb8c260e
1 changed files with 1 additions and 2 deletions

View File

@ -32,8 +32,7 @@ namespace PPC {
PRED_GT = (1 << 5) | 12,
PRED_NE = (2 << 5) | 4,
PRED_UN = (3 << 5) | 12,
PRED_NU = (3 << 5) | 4,
PRED_BAD = 0
PRED_NU = (3 << 5) | 4
};
/// Invert the specified predicate. != -> ==, < -> >=.