Initialize implicit uses/defs fields for sparc backend to empty list

llvm-svn: 4876
This commit is contained in:
Chris Lattner 2002-12-03 05:41:54 +00:00
parent aa0d2c5fb3
commit c6d6d62c8e
1 changed files with 3 additions and 1 deletions

View File

@ -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"
};