Silence GCC warnings with asserts turned off. No functionality change.
authorChandler Carruth <chandlerc@gmail.com>
Wed, 27 Jan 2010 10:27:10 +0000 (10:27 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Wed, 27 Jan 2010 10:27:10 +0000 (10:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94673 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/MachineFunction.cpp
lib/CodeGen/PBQP/Heuristics/Briggs.h

index 511f4aed4cdd534ba32498549b6453e3a373e00e..97b86cb876dd929435ab1da7cf036dc336ac77bf 100644 (file)
@@ -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() :
index 65f22cbc04357ff7d06fbe6f62ce154890ab8fda..c09ad74b198a42ab5271bef4b0ce28b2d1bf973d 100644 (file)
@@ -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.");