Move DebugInfoKind enum from Driver to Basic. NFC
authorPaul Robinson <paul_robinson@playstation.sony.com>
Fri, 5 Feb 2016 21:54:42 +0000 (21:54 +0000)
committerPaul Robinson <paul_robinson@playstation.sony.com>
Fri, 5 Feb 2016 21:54:42 +0000 (21:54 +0000)
llvm-svn: 259935

clang/include/clang/Basic/DebugInfoOptions.h [moved from clang/include/clang/Driver/DebugInfoKind.h with 90% similarity]
clang/include/clang/Frontend/CodeGenOptions.h
clang/lib/Driver/Tools.h

similarity index 90%
rename from clang/include/clang/Driver/DebugInfoKind.h
rename to clang/include/clang/Basic/DebugInfoOptions.h
index 0f84f33..e7ff4a6 100644 (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 {
index e064c2f..a43105b 100644 (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>
index 1b8176f..1d348bb 100644 (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"