llvm-cxxdump.h 694 B

1234567891011121314151617181920212223
  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. //===----------------------------------------------------------------------===//
  9. #ifndef LLVM_TOOLS_LLVM_CXXDUMP_LLVM_CXXDUMP_H
  10. #define LLVM_TOOLS_LLVM_CXXDUMP_LLVM_CXXDUMP_H
  11. #include "llvm/Support/CommandLine.h"
  12. #include <string>
  13. namespace opts {
  14. extern llvm::cl::list<std::string> InputFilenames;
  15. } // namespace opts
  16. #define LLVM_CXXDUMP_ENUM_ENT(ns, enum) \
  17. { #enum, ns::enum }
  18. #endif