summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/TargetOptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/Basic/TargetOptions.h')
-rw-r--r--include/clang/Basic/TargetOptions.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/include/clang/Basic/TargetOptions.h b/include/clang/Basic/TargetOptions.h
deleted file mode 100644
index ca0cca7..0000000
--- a/include/clang/Basic/TargetOptions.h
+++ /dev/null
@@ -1,54 +0,0 @@
-//===--- TargetOptions.h ----------------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-///
-/// \file
-/// \brief Defines the clang::TargetOptions class.
-///
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_CLANG_BASIC_TARGETOPTIONS_H
-#define LLVM_CLANG_BASIC_TARGETOPTIONS_H
-
-#include <string>
-#include <vector>
-
-namespace clang {
-
-/// \brief Options for controlling the target.
-class TargetOptions {
-public:
- /// If given, the name of the target triple to compile for. If not given the
- /// target will be selected to match the host.
- std::string Triple;
-
- /// If given, the name of the target CPU to generate code for.
- std::string CPU;
-
- /// If given, the unit to use for floating point math.
- std::string FPMath;
-
- /// If given, the name of the target ABI to use.
- std::string ABI;
-
- /// If given, the version string of the linker in use.
- std::string LinkerVersion;
-
- /// \brief The list of target specific features to enable or disable, as written on the command line.
- std::vector<std::string> FeaturesAsWritten;
-
- /// The list of target specific features to enable or disable -- this should
- /// be a list of strings starting with by '+' or '-'.
- std::vector<std::string> Features;
-
- std::vector<std::string> Reciprocals;
-};
-
-} // end namespace clang
-
-#endif
OpenPOWER on IntegriCloud