Move DebugInfoKind enum from Driver to Basic. NFC
llvm-svn: 259935
diff --git a/clang/include/clang/Driver/DebugInfoKind.h b/clang/include/clang/Basic/DebugInfoOptions.h
similarity index 90%
rename from clang/include/clang/Driver/DebugInfoKind.h
rename to clang/include/clang/Basic/DebugInfoOptions.h
index 0f84f33..e7ff4a6 100644
--- a/clang/include/clang/Driver/DebugInfoKind.h
+++ b/clang/include/clang/Basic/DebugInfoOptions.h
@@ -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 {
diff --git a/clang/include/clang/Frontend/CodeGenOptions.h b/clang/include/clang/Frontend/CodeGenOptions.h
index e064c2ff..a43105b 100644
--- a/clang/include/clang/Frontend/CodeGenOptions.h
+++ b/clang/include/clang/Frontend/CodeGenOptions.h
@@ -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>
diff --git a/clang/lib/Driver/Tools.h b/clang/lib/Driver/Tools.h
index 1b8176f..1d348bb 100644
--- a/clang/lib/Driver/Tools.h
+++ b/clang/lib/Driver/Tools.h
@@ -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"