move an enum from TM -> TargetOptions. This makes TargetOptions.h
[oota-llvm.git] / include / llvm / Target / TargetMachine.h
index ebe6bea7021822f93e41ca9766eef12d9d7eac40..1dd8f20b70065ae4ce004a45b5e94bdc33a5c6f8 100644 (file)
@@ -80,15 +80,6 @@ namespace CodeGenOpt {
 }
 
 
-// Possible float ABI settings. Used with FloatABIType in TargetOptions.h.
-namespace FloatABI {
-  enum ABIType {
-    Default, // Target-specific (either soft of hard depending on triple, etc).
-    Soft, // Soft float.
-    Hard  // Hard float.
-  };
-}
-
 //===----------------------------------------------------------------------===//
 ///
 /// TargetMachine - Primary interface to the complete machine description for