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/PBQP | |
| parent | 76be2d1ccad2e9cd0a6588be4632d0561fdf07b3 (diff) | |
| download | bcm5719-llvm-c07bd40b3e77fd400abb23a488facdf46b2747f3.tar.gz bcm5719-llvm-c07bd40b3e77fd400abb23a488facdf46b2747f3.zip | |
Silence GCC warnings with asserts turned off. No functionality change.
llvm-svn: 94673
Diffstat (limited to 'llvm/lib/CodeGen/PBQP')
| -rw-r--r-- | llvm/lib/CodeGen/PBQP/Heuristics/Briggs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/PBQP/Heuristics/Briggs.h b/llvm/lib/CodeGen/PBQP/Heuristics/Briggs.h index 65f22cbc043..c09ad74b198 100644 --- a/llvm/lib/CodeGen/PBQP/Heuristics/Briggs.h +++ b/llvm/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."); |

