diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-07-22 08:02:25 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-07-22 08:02:25 +0000 |
commit | 30d35b8720cb148eb4cc417b3710e0d66ce5ec95 (patch) | |
tree | 76323f77a94e8e7383d86b8b03924680c482cc46 /lib/Target/ARM/ARMISelLowering.cpp | |
parent | 986569ac9a7d90180cec515b5f101ced94ae794c (diff) |
Mark an assert-only variable as used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109091 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMISelLowering.cpp')
-rw-r--r-- | lib/Target/ARM/ARMISelLowering.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp index 8d1ed2ad18..0e33758508 100644 --- a/lib/Target/ARM/ARMISelLowering.cpp +++ b/lib/Target/ARM/ARMISelLowering.cpp @@ -855,6 +855,7 @@ static bool f64AssignAAPCS(unsigned &ValNo, EVT &ValVT, EVT &LocVT, break; unsigned T = State.AllocateReg(LoRegList[i]); + (void)T; assert(T == LoRegList[i] && "Could not allocate register"); State.addLoc(CCValAssign::getCustomReg(ValNo, ValVT, Reg, LocVT, LocInfo)); |