mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-26 21:47:07 +00:00
Silence GCC warnings with asserts turned off. No functionality change.
llvm-svn: 94673
This commit is contained in:
parent
5d02574734
commit
866dc92123
@ -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() :
|
||||
|
@ -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.");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user