summaryrefslogtreecommitdiff
path: root/utils/TableGen/LLDBTableGenBackends.h
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2019-09-19 17:17:53 +0000
committerDimitry Andric <dim@FreeBSD.org>2019-09-19 17:17:53 +0000
commit30ea79295cc2a5eee141d42b064a7170dc816e5f (patch)
treefe6a110942259f3d79a5b4e61ec75c298eb0635f /utils/TableGen/LLDBTableGenBackends.h
parentbc9477c1e1e269b892d68ad400a383e3bbc53a84 (diff)
Notes
Diffstat (limited to 'utils/TableGen/LLDBTableGenBackends.h')
-rw-r--r--utils/TableGen/LLDBTableGenBackends.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/utils/TableGen/LLDBTableGenBackends.h b/utils/TableGen/LLDBTableGenBackends.h
new file mode 100644
index 000000000000..eb14d80c5627
--- /dev/null
+++ b/utils/TableGen/LLDBTableGenBackends.h
@@ -0,0 +1,34 @@
+//===- TableGen.cpp - Top-Level TableGen implementation for Clang ---------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+//
+// This file contains the declarations for all of the LLDB TableGen
+// backends. A "TableGen backend" is just a function. See
+// "$LLVM_ROOT/utils/TableGen/TableGenBackends.h" for more info.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_LLDB_UTILS_TABLEGEN_TABLEGENBACKENDS_H
+#define LLVM_LLDB_UTILS_TABLEGEN_TABLEGENBACKENDS_H
+
+#include <string>
+
+namespace llvm {
+class raw_ostream;
+class RecordKeeper;
+} // namespace llvm
+
+using llvm::raw_ostream;
+using llvm::RecordKeeper;
+
+namespace lldb_private {
+
+void EmitOptionDefs(RecordKeeper &RK, raw_ostream &OS);
+
+} // namespace lldb_private
+
+#endif