Try to unbreak the C++11 build

Cannot use negative numbers in case statements without running afoul of -Wc++11-narrowing.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202455 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Hal Finkel 2014-02-28 00:45:27 +00:00
parent d477e841dc
commit ff455c0954

View File

@ -52,8 +52,8 @@ namespace PPC {
// When dealing with individual condition-register bits, we have simple set
// and unset predicates.
PRED_BIT_SET = -1,
PRED_BIT_UNSET = -2
PRED_BIT_SET = 1024,
PRED_BIT_UNSET = 1025
};
/// Invert the specified predicate. != -> ==, < -> >=.