Recommit r310809 with a fix for the spill problem
[llvm-core.git] / tools / llvm-cxxdump / llvm-cxxdump.h
blobdaa05cb2ca0a6d37daf974961defaee797a958d7
1 //===-- llvm-cxxdump.h ------------------------------------------*- C++ -*-===//
2 //
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 //===----------------------------------------------------------------------===//
10 #ifndef LLVM_TOOLS_LLVM_CXXDUMP_LLVM_CXXDUMP_H
11 #define LLVM_TOOLS_LLVM_CXXDUMP_LLVM_CXXDUMP_H
13 #include "llvm/Support/CommandLine.h"
14 #include <string>
16 namespace opts {
17 extern llvm::cl::list<std::string> InputFilenames;
18 } // namespace opts
20 #define LLVM_CXXDUMP_ENUM_ENT(ns, enum) \
21 { #enum, ns::enum }
23 #endif