mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-29 22:30:33 +00:00
Fix unused variables.
llvm-svn: 190448
This commit is contained in:
parent
713110699b
commit
603420e30e
@ -120,7 +120,9 @@ class RAGreedy : public MachineFunctionPass,
|
||||
RS_Done
|
||||
};
|
||||
|
||||
#ifndef NDEBUG
|
||||
static const char *const StageName[];
|
||||
#endif
|
||||
|
||||
// RegInfo - Keep additional information about each live range.
|
||||
struct RegInfo {
|
||||
|
@ -389,7 +389,6 @@ signed ResourcePriorityQueue::regPressureDelta(SUnit *SU, bool RawPressure) {
|
||||
// Constants used to denote relative importance of
|
||||
// heuristic components for cost computation.
|
||||
static const unsigned PriorityOne = 200;
|
||||
static const unsigned PriorityTwo = 100;
|
||||
static const unsigned PriorityThree = 50;
|
||||
static const unsigned PriorityFour = 15;
|
||||
static const unsigned PriorityFive = 5;
|
||||
|
@ -39,8 +39,6 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
const unsigned Hexagon_MAX_RET_SIZE = 64;
|
||||
|
||||
static cl::opt<bool>
|
||||
EmitJumpTables("hexagon-emit-jump-tables", cl::init(true), cl::Hidden,
|
||||
cl::desc("Control jump table emission on Hexagon target"));
|
||||
|
@ -457,9 +457,7 @@ static SUnit *getSingleUnscheduledSucc(SUnit *SU) {
|
||||
// Constants used to denote relative importance of
|
||||
// heuristic components for cost computation.
|
||||
static const unsigned PriorityOne = 200;
|
||||
static const unsigned PriorityTwo = 100;
|
||||
static const unsigned PriorityThree = 50;
|
||||
static const unsigned PriorityFour = 20;
|
||||
static const unsigned ScaleTwo = 10;
|
||||
static const unsigned FactorOne = 2;
|
||||
|
||||
|
@ -2224,8 +2224,6 @@ static bool CC_MipsO32_FP64(unsigned ValNo, MVT ValVT,
|
||||
// Call Calling Convention Implementation
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
static const unsigned O32IntRegsSize = 4;
|
||||
|
||||
// Return next O32 integer argument register.
|
||||
static unsigned getNextIntArgReg(unsigned Reg) {
|
||||
assert((Reg == Mips::A0) || (Reg == Mips::A2));
|
||||
|
Loading…
Reference in New Issue
Block a user