mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
ARM: ignore unused variable to fix -Wunused-variable builds
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203765 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dbf8aab915
commit
7c801675f8
@ -279,6 +279,7 @@ public:
|
||||
} else if (MO.isExpr()) {
|
||||
int64_t Value;
|
||||
bool Invalid = MO.getExpr()->EvaluateAsAbsolute(Value);
|
||||
(void) Invalid;
|
||||
assert(!Invalid && "non-constant expression is not a valid SOImm operand");
|
||||
assert((Value >= INT32_MIN && Value <= INT32_MAX) &&
|
||||
"expression must be representable in 32 bits");
|
||||
|
Loading…
x
Reference in New Issue
Block a user