llvm-svn: 163876
This commit is contained in:
Andrew Trick 2012-09-14 06:18:52 +00:00
parent 78276ea615
commit be5a54a363
1 changed files with 3 additions and 0 deletions

View File

@ -989,6 +989,9 @@ class Processor<string n, ProcessorItineraries pi, list<SubtargetFeature> f> {
// ProcessorModel allows subtargets to specify the more general
// SchedMachineModel instead if a ProcessorItinerary. Subtargets will
// gradually move to this newer form.
//
// Although this class always passes NoItineraries to the Processor
// class, the SchedMachineModel may still define valid Itineraries.
class ProcessorModel<string n, SchedMachineModel m, list<SubtargetFeature> f>
: Processor<n, NoItineraries, f> {
let SchedModel = m;