diff options
Diffstat (limited to 'tools/llvm-cxxdump/llvm-cxxdump.h')
-rw-r--r-- | tools/llvm-cxxdump/llvm-cxxdump.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tools/llvm-cxxdump/llvm-cxxdump.h b/tools/llvm-cxxdump/llvm-cxxdump.h new file mode 100644 index 0000000..daa05cb --- /dev/null +++ b/tools/llvm-cxxdump/llvm-cxxdump.h @@ -0,0 +1,23 @@ +//===-- llvm-cxxdump.h ------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_TOOLS_LLVM_CXXDUMP_LLVM_CXXDUMP_H +#define LLVM_TOOLS_LLVM_CXXDUMP_LLVM_CXXDUMP_H + +#include "llvm/Support/CommandLine.h" +#include <string> + +namespace opts { +extern llvm::cl::list<std::string> InputFilenames; +} // namespace opts + +#define LLVM_CXXDUMP_ENUM_ENT(ns, enum) \ + { #enum, ns::enum } + +#endif |