blob: daa05cb2ca0a6d37daf974961defaee797a958d7 [file] [log] [blame]
David Majnemerc9761462015-03-15 01:30:58 +00001//===-- llvm-cxxdump.h ------------------------------------------*- C++ -*-===//
David Majnemer96171322014-07-24 23:14:40 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
David Majnemerc9761462015-03-15 01:30:58 +000010#ifndef LLVM_TOOLS_LLVM_CXXDUMP_LLVM_CXXDUMP_H
11#define LLVM_TOOLS_LLVM_CXXDUMP_LLVM_CXXDUMP_H
David Majnemer96171322014-07-24 23:14:40 +000012
13#include "llvm/Support/CommandLine.h"
14#include <string>
15
16namespace opts {
17extern llvm::cl::list<std::string> InputFilenames;
18} // namespace opts
19
David Majnemerc9761462015-03-15 01:30:58 +000020#define LLVM_CXXDUMP_ENUM_ENT(ns, enum) \
David Majnemer96171322014-07-24 23:14:40 +000021 { #enum, ns::enum }
22
23#endif