diff options
author | Duncan Sands <baldrick@free.fr> | 2009-07-03 16:11:59 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2009-07-03 16:11:59 +0000 |
commit | 430506924dd2afe4f118e785ae8b38f8677c2428 (patch) | |
tree | 7b07110cb5a74e323f4544533dd9d9edbe76e29a | |
parent | f7f2d30bb8b206ea2606f163c3310a5db9e36462 (diff) |
Silence a warning when assertions are turned off.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74779 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/Mips/MipsInstrInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/Mips/MipsInstrInfo.cpp b/lib/Target/Mips/MipsInstrInfo.cpp index c2b876403d..e16fd8e400 100644 --- a/lib/Target/Mips/MipsInstrInfo.cpp +++ b/lib/Target/Mips/MipsInstrInfo.cpp @@ -651,6 +651,7 @@ unsigned MipsInstrInfo::getGlobalBaseReg(MachineFunction *MF) const { Mips::CPURegsRegisterClass, Mips::CPURegsRegisterClass); assert(Ok && "Couldn't assign to global base register!"); + Ok = Ok; // Silence warning when assertions are turned off. RegInfo.addLiveIn(Mips::GP); MipsFI->setGlobalBaseReg(GlobalBaseReg); |