diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-01-27 10:27:10 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-01-27 10:27:10 +0000 |
commit | c07bd40b3e77fd400abb23a488facdf46b2747f3 (patch) | |
tree | a0d0b00e5fbbb9dc91da99430ae27f23eff5a596 /llvm/lib/CodeGen/MachineFunction.cpp | |
parent | 76be2d1ccad2e9cd0a6588be4632d0561fdf07b3 (diff) | |
download | llvm-c07bd40b3e77fd400abb23a488facdf46b2747f3.zip llvm-c07bd40b3e77fd400abb23a488facdf46b2747f3.tar.gz llvm-c07bd40b3e77fd400abb23a488facdf46b2747f3.tar.bz2 |
Silence GCC warnings with asserts turned off. No functionality change.
llvm-svn: 94673
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index 511f4aed..97b86cb 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/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() : |