mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-16 08:08:01 +00:00
move an enum from TM -> TargetOptions. This makes TargetOptions.h
be self contained, and it isn't used from TM.h llvm-svn: 77857
This commit is contained in:
parent
d2477587b9
commit
c897539adf
@ -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
|
||||
|
@ -16,6 +16,15 @@
|
||||
#define LLVM_TARGET_TARGETOPTIONS_H
|
||||
|
||||
namespace llvm {
|
||||
// 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.
|
||||
};
|
||||
}
|
||||
|
||||
/// PrintMachineCode - This flag is enabled when the -print-machineinstrs
|
||||
/// option is specified on the command line, and should enable debugging
|
||||
/// output from the code generator.
|
||||
|
Loading…
Reference in New Issue
Block a user