mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
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:
parent
d477e841dc
commit
ff455c0954
@ -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. != -> ==, < -> >=.
|
||||
|
Loading…
Reference in New Issue
Block a user