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 | 9f4185e3a1ab4cc49e93d38afcfa29d6777d38cc (patch) | |
| tree | 7a78dbccd1ccebe482c6c1d97eb184a7bc602a01 | |
| parent | ed6530b9a247b7cd42d91728c9afeb660cb52ac0 (diff) | |
| download | external_llvm-9f4185e3a1ab4cc49e93d38afcfa29d6777d38cc.zip external_llvm-9f4185e3a1ab4cc49e93d38afcfa29d6777d38cc.tar.gz external_llvm-9f4185e3a1ab4cc49e93d38afcfa29d6777d38cc.tar.bz2 | |
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
| -rw-r--r-- | lib/CodeGen/MachineFunction.cpp | 3 | ||||
| -rw-r--r-- | lib/CodeGen/PBQP/Heuristics/Briggs.h | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index 511f4ae..97b86cb 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() : diff --git a/lib/CodeGen/PBQP/Heuristics/Briggs.h b/lib/CodeGen/PBQP/Heuristics/Briggs.h index 65f22cb..c09ad74 100644 --- a/lib/CodeGen/PBQP/Heuristics/Briggs.h +++ b/lib/CodeGen/PBQP/Heuristics/Briggs.h @@ -18,6 +18,7 @@ #ifndef LLVM_CODEGEN_PBQP_HEURISTICS_BRIGGS_H #define LLVM_CODEGEN_PBQP_HEURISTICS_BRIGGS_H +#include "llvm/Support/Compiler.h" #include "../HeuristicSolver.h" #include "../HeuristicBase.h" @@ -273,7 +274,7 @@ namespace PBQP { if (!nd.isHeuristic) return; - EdgeData &ed = getHeuristicEdgeData(eItr); + EdgeData &ed ATTRIBUTE_UNUSED = getHeuristicEdgeData(eItr); assert(ed.isUpToDate && "Edge data is not up to date."); |
