We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f38548 commit 66fdde3Copy full SHA for 66fdde3
mlir/tools/mlir-tblgen/mlir-tblgen.cpp
@@ -18,10 +18,11 @@ using namespace llvm;
18
using namespace mlir;
19
20
// Generator that prints records.
21
-GenRegistration printRecords("print-records", "Print all records to stdout",
22
- [](const RecordKeeper &records, raw_ostream &os) {
23
- os << records;
24
- return false;
25
- });
+static GenRegistration
+ printRecords("print-records", "Print all records to stdout",
+ [](const RecordKeeper &records, raw_ostream &os) {
+ os << records;
+ return false;
26
+ });
27
28
int main(int argc, char **argv) { return MlirTblgenMain(argc, argv); }
0 commit comments