aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineFunction.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2010-01-27 10:27:10 +0000
committerChandler Carruth <chandlerc@gmail.com>2010-01-27 10:27:10 +0000
commitde4c08008a10aba59171c56086d96c760990a4cb (patch)
tree7a78dbccd1ccebe482c6c1d97eb184a7bc602a01 /lib/CodeGen/MachineFunction.cpp
parent42210668da1b304488320ff01eea74733d9a1829 (diff)
Silence GCC warnings with asserts turned off. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94673 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineFunction.cpp')
-rw-r--r--lib/CodeGen/MachineFunction.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp
index 511f4aed4c..97b86cb876 100644
--- a/lib/CodeGen/MachineFunction.cpp
+++ b/lib/CodeGen/MachineFunction.cpp
@@ -453,8 +453,7 @@ MCSymbol *MachineFunction::getJTISymbol(unsigned JTI, MCContext &Ctx,
bool isLinkerPrivate) const {
assert(JumpTableInfo && "No jump tables");
- const std::vector<MachineJumpTableEntry> &JTs =JumpTableInfo->getJumpTables();
- assert(JTI < JTs.size() && "Invalid JTI!");
+ assert(JTI < JumpTableInfo->getJumpTables().size() && "Invalid JTI!");
const MCAsmInfo &MAI = *getTarget().getMCAsmInfo();
const char *Prefix = isLinkerPrivate ? MAI.getLinkerPrivateGlobalPrefix() :