diff options
| author | Hal Finkel <hfinkel@anl.gov> | 2012-06-18 21:08:18 +0000 | 
|---|---|---|
| committer | Hal Finkel <hfinkel@anl.gov> | 2012-06-18 21:08:18 +0000 | 
| commit | 8eac00963347ec729959be8fee78584cd5566b26 (patch) | |
| tree | 656319aa04ee1648c3461d481dc565fd96589495 /llvm/lib/Target/CellSPU/SPUNopFiller.cpp | |
| parent | 920ceddf807410e615bd888bed4bbb6a5849fdac (diff) | |
| download | bcm5719-llvm-8eac00963347ec729959be8fee78584cd5566b26.tar.gz bcm5719-llvm-8eac00963347ec729959be8fee78584cd5566b26.zip | |
Allow up to 64 functional units per processor itinerary.
This patch changes the type used to hold the FU bitset from unsigned to uint64_t.
This will be needed for some upcoming PowerPC itineraries.
llvm-svn: 158679
Diffstat (limited to 'llvm/lib/Target/CellSPU/SPUNopFiller.cpp')
| -rw-r--r-- | llvm/lib/Target/CellSPU/SPUNopFiller.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/Target/CellSPU/SPUNopFiller.cpp b/llvm/lib/Target/CellSPU/SPUNopFiller.cpp index 7c58041e3b8..150959777d0 100644 --- a/llvm/lib/Target/CellSPU/SPUNopFiller.cpp +++ b/llvm/lib/Target/CellSPU/SPUNopFiller.cpp @@ -138,7 +138,7 @@ SPUNopFiller::SPUOpPlace  SPUNopFiller::getOpPlacement( MachineInstr &instr ) {    int sc = instr.getDesc().getSchedClass();    const InstrStage *stage = IID->beginStage(sc); -  unsigned FUs = stage->getUnits(); +  uint64_t FUs = stage->getUnits();    SPUOpPlace retval;    switch( FUs ) { | 

