Initialize IssueWidth to zero.

Fixes valgrind errors in the CellSPU backend.

llvm-svn: 132405
This commit is contained in:
Benjamin Kramer 2011-06-01 17:19:08 +00:00
parent 7b7c102f2c
commit 10539ada05
1 changed files with 2 additions and 1 deletions

View File

@ -122,7 +122,8 @@ public:
InstrItineraryData(const InstrStage *S, const unsigned *OS,
const unsigned *F, const InstrItinerary *I)
: Stages(S), OperandCycles(OS), Forwardings(F), Itineraries(I) {}
: Stages(S), OperandCycles(OS), Forwardings(F), Itineraries(I),
IssueWidth(0) {}
/// isEmpty - Returns true if there are no itineraries.
///