mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Silence unused variable warnings in release builds.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136956 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4dd963b196
commit
8d8fa2506d
@ -102,6 +102,8 @@ public:
|
||||
const uint64_t Mask = ~0ULL;
|
||||
const uint64_t UpperV = (Value >> (Size * 8));
|
||||
const uint64_t MaskF = (Mask >> (Size * 8));
|
||||
(void)UpperV;
|
||||
(void)MaskF;
|
||||
assert(((Size == 8) ||
|
||||
((UpperV & MaskF) == 0ULL) || ((UpperV & MaskF) == MaskF)) &&
|
||||
"Value does not fit in the Fixup field");
|
||||
|
Loading…
Reference in New Issue
Block a user