diff options
Diffstat (limited to 'llvm/utils/TableGen/ClangAttrEmitter.h')
| -rw-r--r-- | llvm/utils/TableGen/ClangAttrEmitter.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/ClangAttrEmitter.h b/llvm/utils/TableGen/ClangAttrEmitter.h index 83149824b2e..af870098a84 100644 --- a/llvm/utils/TableGen/ClangAttrEmitter.h +++ b/llvm/utils/TableGen/ClangAttrEmitter.h @@ -83,6 +83,19 @@ public: void run(raw_ostream &OS); }; +/// ClangAttrSpellingListEmitter - class emits the list of spellings for attributes for +/// clang. +class ClangAttrSpellingListEmitter : public TableGenBackend { + RecordKeeper &Records; + + public: + explicit ClangAttrSpellingListEmitter(RecordKeeper &R) + : Records(R) + {} + + void run(raw_ostream &OS); +}; + } #endif |

