mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 22:28:18 +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:
@@ -52,8 +52,8 @@ namespace PPC {
|
|||||||
|
|
||||||
// When dealing with individual condition-register bits, we have simple set
|
// When dealing with individual condition-register bits, we have simple set
|
||||||
// and unset predicates.
|
// and unset predicates.
|
||||||
PRED_BIT_SET = -1,
|
PRED_BIT_SET = 1024,
|
||||||
PRED_BIT_UNSET = -2
|
PRED_BIT_UNSET = 1025
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Invert the specified predicate. != -> ==, < -> >=.
|
/// Invert the specified predicate. != -> ==, < -> >=.
|
||||||
|
Reference in New Issue
Block a user