File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -274,8 +274,9 @@ unsigned SubtargetEmitter::featureKeyValues(raw_ostream &OS,
274274
275275 // Begin feature table.
276276 OS << " // Sorted (by key) array of values for CPU features.\n "
277- << " extern const llvm::" << (IsEmitBasic ? " Basic" : " " ) << " SubtargetFeatureKV "
278- << (IsEmitBasic ? " Basic" : " " ) << Target << " FeatureKV[] = {\n " ;
277+ << " extern const llvm::" << (IsEmitBasic ? " Basic" : " " )
278+ << " SubtargetFeatureKV " << (IsEmitBasic ? " Basic" : " " ) << Target
279+ << " FeatureKV[] = {\n " ;
279280
280281 for (const Record *Feature : FeatureList) {
281282 // Next feature
@@ -357,8 +358,9 @@ unsigned SubtargetEmitter::cpuKeyValues(raw_ostream &OS,
357358
358359 // Begin processor table.
359360 OS << " // Sorted (by key) array of values for CPU subtype.\n "
360- << " extern const llvm::" << (IsEmitBasic ? " Basic" : " " ) << " SubtargetSubTypeKV "
361- << (IsEmitBasic ? " Basic" : " " ) << Target << " SubTypeKV[] = {\n " ;
361+ << " extern const llvm::" << (IsEmitBasic ? " Basic" : " " )
362+ << " SubtargetSubTypeKV " << (IsEmitBasic ? " Basic" : " " ) << Target
363+ << " SubTypeKV[] = {\n " ;
362364
363365 for (const Record *Processor : ProcessorList) {
364366 StringRef Name = Processor->getValueAsString (" Name" );
You can’t perform that action at this time.
0 commit comments