Silence unused variable warnings in release builds.

llvm-svn: 136956
This commit is contained in:
Chandler Carruth 2011-08-05 01:08:21 +00:00
parent b0244cf0a4
commit 2536b51aae
1 changed files with 2 additions and 0 deletions

View File

@ -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");