Skip to content

Commit 23de679

Browse files
committed
clang format
1 parent 97f10e6 commit 23de679

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

llvm/utils/TableGen/SubtargetEmitter.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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");

0 commit comments

Comments
 (0)