Move DebugInfoKind enum from Driver to Basic. NFC

llvm-svn: 259935
This commit is contained in:
Paul Robinson 2016-02-05 21:54:42 +00:00
parent 0139178e1b
commit b3cd79bb4e
3 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
//===--- DebugInfoKind.h - Debug Info Emission Types ------------*- C++ -*-===//
//===--- DebugInfoOptions.h - Debug Info Emission Types ---------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -7,8 +7,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_DRIVER_DEBUGINFOKIND_H
#define LLVM_CLANG_DRIVER_DEBUGINFOKIND_H
#ifndef LLVM_CLANG_BASIC_DEBUGINFOOPTIONS_H
#define LLVM_CLANG_BASIC_DEBUGINFOOPTIONS_H
namespace clang {
namespace codegenoptions {

View File

@ -14,8 +14,8 @@
#ifndef LLVM_CLANG_FRONTEND_CODEGENOPTIONS_H
#define LLVM_CLANG_FRONTEND_CODEGENOPTIONS_H
#include "clang/Basic/DebugInfoOptions.h"
#include "clang/Basic/Sanitizers.h"
#include "clang/Driver/DebugInfoKind.h"
#include "llvm/Support/Regex.h"
#include <map>
#include <memory>

View File

@ -10,8 +10,8 @@
#ifndef LLVM_CLANG_LIB_DRIVER_TOOLS_H
#define LLVM_CLANG_LIB_DRIVER_TOOLS_H
#include "clang/Basic/DebugInfoOptions.h"
#include "clang/Basic/VersionTuple.h"
#include "clang/Driver/DebugInfoKind.h"
#include "clang/Driver/Tool.h"
#include "clang/Driver/Types.h"
#include "clang/Driver/Util.h"