forked from OSchip/llvm-project
Initialize implicit uses/defs fields for sparc backend to empty list
llvm-svn: 4876
This commit is contained in:
parent
aa0d2c5fb3
commit
c6d6d62c8e
|
@ -23,12 +23,14 @@
|
|||
#include "Support/CommandLine.h"
|
||||
using std::cerr;
|
||||
|
||||
static const unsigned ImplicitRegUseList[] = { 0 }; /* not used yet */
|
||||
// Build the MachineInstruction Description Array...
|
||||
const MachineInstrDescriptor SparcMachineInstrDesc[] = {
|
||||
#define I(ENUM, OPCODESTRING, NUMOPERANDS, RESULTPOS, MAXIMM, IMMSE, \
|
||||
NUMDELAYSLOTS, LATENCY, SCHEDCLASS, INSTFLAGS) \
|
||||
{ OPCODESTRING, NUMOPERANDS, RESULTPOS, MAXIMM, IMMSE, \
|
||||
NUMDELAYSLOTS, LATENCY, SCHEDCLASS, INSTFLAGS, 0 },
|
||||
NUMDELAYSLOTS, LATENCY, SCHEDCLASS, INSTFLAGS, 0, \
|
||||
ImplicitRegUseList, ImplicitRegUseList },
|
||||
#include "SparcInstr.def"
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue