David Majnemer | c976146 | 2015-03-15 01:30:58 +0000 | [diff] [blame] | 1 | //===-- llvm-cxxdump.h ------------------------------------------*- C++ -*-===// |
David Majnemer | 9617132 | 2014-07-24 23:14:40 +0000 | [diff] [blame] | 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 | //===----------------------------------------------------------------------===// |
| 9 | |
David Majnemer | c976146 | 2015-03-15 01:30:58 +0000 | [diff] [blame] | 10 | #ifndef LLVM_TOOLS_LLVM_CXXDUMP_LLVM_CXXDUMP_H |
| 11 | #define LLVM_TOOLS_LLVM_CXXDUMP_LLVM_CXXDUMP_H |
David Majnemer | 9617132 | 2014-07-24 23:14:40 +0000 | [diff] [blame] | 12 | |
| 13 | #include "llvm/Support/CommandLine.h" |
| 14 | #include <string> |
| 15 | |
| 16 | namespace opts { |
| 17 | extern llvm::cl::list<std::string> InputFilenames; |
| 18 | } // namespace opts |
| 19 | |
David Majnemer | c976146 | 2015-03-15 01:30:58 +0000 | [diff] [blame] | 20 | #define LLVM_CXXDUMP_ENUM_ENT(ns, enum) \ |
David Majnemer | 9617132 | 2014-07-24 23:14:40 +0000 | [diff] [blame] | 21 | { #enum, ns::enum } |
| 22 | |
| 23 | #endif |