Tweak spelling.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159889 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Andrew Trick
2012-07-07 03:59:48 +00:00
parent 2d4215f759
commit a11a6287a5
3 changed files with 7 additions and 7 deletions

View File

@@ -32,7 +32,7 @@ MCSubtargetInfo::InitMCSubtargetInfo(StringRef TT, StringRef CPU, StringRef FS,
ProcItins = PI;
Stages = IS;
OperandCycles = OC;
ForwardingPathes = FP;
ForwardingPaths = FP;
NumFeatures = NF;
NumProcs = NP;
@@ -93,6 +93,6 @@ MCSubtargetInfo::getInstrItineraryForCPU(StringRef CPU) const {
InstrItinerarySubtargetValue *V =
(InstrItinerarySubtargetValue *)Found->Value;
return InstrItineraryData(V->Props, Stages, OperandCycles, ForwardingPathes,
return InstrItineraryData(V->Props, Stages, OperandCycles, ForwardingPaths,
V->Itineraries);
}