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
This commit is contained in:
Chandler Carruth
2010-01-27 10:27:10 +00:00
parent 42210668da
commit de4c08008a
2 changed files with 3 additions and 3 deletions

View 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.");