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 | a1d7516cb7533ea4bd32ecdcdfef8414eeb9be07 (patch) | |
tree | 15b4290c901e65cf3ed3927e7f1dc85457585638 /llvm/lib | |
parent | 2f8db38bb3dda318923f49d059a916e5f82e98b1 (diff) | |
download | bcm5719-llvm-a1d7516cb7533ea4bd32ecdcdfef8414eeb9be07.tar.gz bcm5719-llvm-a1d7516cb7533ea4bd32ecdcdfef8414eeb9be07.zip |
Mark an assert-only variable as used.
llvm-svn: 109091
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp index 8d1ed2ad188..0e33758508f 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.cpp +++ b/llvm/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)); |