summaryrefslogtreecommitdiff
path: root/include/llvm/Target
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-07-29 05:13:34 +0000
committerChris Lattner <sabre@nondot.org>2003-07-29 05:13:34 +0000
commit5d7407cbef2a441801e6d6a3a9f0c98793fd72e1 (patch)
tree05733b81fe72ce3882cc1675ebe6614f28037399 /include/llvm/Target
parentad5e1f815335f65c20b07ed10cdac2885202a47c (diff)
downloadllvm-5d7407cbef2a441801e6d6a3a9f0c98793fd72e1.tar.gz
llvm-5d7407cbef2a441801e6d6a3a9f0c98793fd72e1.tar.bz2
llvm-5d7407cbef2a441801e6d6a3a9f0c98793fd72e1.tar.xz
Move value type enums to CodeGen/ValueTypes.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7376 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r--include/llvm/Target/MRegisterInfo.h21
1 files changed, 1 insertions, 20 deletions
diff --git a/include/llvm/Target/MRegisterInfo.h b/include/llvm/Target/MRegisterInfo.h
index dcd489105b..41fea08bf4 100644
--- a/include/llvm/Target/MRegisterInfo.h
+++ b/include/llvm/Target/MRegisterInfo.h
@@ -1,4 +1,4 @@
-//===- Target/MRegisterInfo.h - Target Register Information -------*-C++-*-===//
+//===- Target/MRegisterInfo.h - Target Register Information -----*- C++ -*-===//
//
// This file describes an abstract interface used to get information about a
// target machines register file. This information is used for a variety of
@@ -28,25 +28,6 @@ struct MRegisterDesc {
unsigned TSFlags; // Target Specific Flags
};
-/// MRF namespace - This namespace contains flags that pertain to machine
-/// registers
-///
-namespace MRF { // MRF = Machine Register Flags
- enum {
- Other = 0 << 0, // This is a non-standard register
- INT8 = 1 << 0, // This is an 8 bit integer register
- INT16 = 1 << 1, // This is a 16 bit integer register
- INT32 = 1 << 2, // This is a 32 bit integer register
- INT64 = 1 << 3, // This is a 64 bit integer register
- INT128 = 1 << 4, // This is a 128 bit integer register
-
- FP32 = 1 << 5, // This is a 32 bit floating point register
- FP64 = 1 << 6, // This is a 64 bit floating point register
- FP80 = 1 << 7, // This is a 80 bit floating point register
- FP128 = 1 << 8, // This is a 128 bit floating point register
- };
-};
-
class TargetRegisterClass {
public:
typedef const unsigned* iterator;