]> granicus.if.org Git - clang/commitdiff
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)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@259935 91177308-0d34-0410-b5e6-96231b3b80d8

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

similarity index 90%
rename from include/clang/Driver/DebugInfoKind.h
rename to include/clang/Basic/DebugInfoOptions.h
index 0f84f339281671412f473bc02561cf74e009db71..e7ff4a662b630ef45954d7f75069ef14767b263b 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 e064c2fff9cb896406f2f1c1707b5a08cf96b6ed..a43105b2310180c2d6fad4d10f56c3b100f65474 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 1b8176f8839362770a137fb9091d6ecd2eb05c12..1d348bbbd689918af3cbc5b4638b98d6875e4c0b 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"