diff options
author | Chris Lattner <sabre@nondot.org> | 2005-08-19 18:49:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-08-19 18:49:22 +0000 |
commit | 28e728d75a7a5b798f6814652a6dd97732b236ea (patch) | |
tree | ca9a37d8461e8bd3876f1c6e9afef24d57ffc148 /lib/Target/SparcV8/SparcV8RegisterInfo.td | |
parent | 1ff9540c1763232f636b479aa586024575f2ecea (diff) | |
download | external_llvm-28e728d75a7a5b798f6814652a6dd97732b236ea.zip external_llvm-28e728d75a7a5b798f6814652a6dd97732b236ea.tar.gz external_llvm-28e728d75a7a5b798f6814652a6dd97732b236ea.tar.bz2 |
put reg classes in namespaces
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22922 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV8/SparcV8RegisterInfo.td')
-rw-r--r-- | lib/Target/SparcV8/SparcV8RegisterInfo.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/SparcV8/SparcV8RegisterInfo.td b/lib/Target/SparcV8/SparcV8RegisterInfo.td index def3d54..515247f 100644 --- a/lib/Target/SparcV8/SparcV8RegisterInfo.td +++ b/lib/Target/SparcV8/SparcV8RegisterInfo.td @@ -84,7 +84,7 @@ def Y : Rs<0, "Y">; // FIXME: the register order should be defined in terms of the preferred // allocation order... // -def IntRegs : RegisterClass<i32, 32, [L0, L1, L2, L3, L4, L5, L6, L7, +def IntRegs : RegisterClass<"V8", i32, 32, [L0, L1, L2, L3, L4, L5, L6, L7, I0, I1, I2, I3, I4, I5, G1, O0, O1, O2, O3, O4, O5, O7, @@ -104,9 +104,9 @@ def IntRegs : RegisterClass<i32, 32, [L0, L1, L2, L3, L4, L5, L6, L7, }]; } -def FPRegs : RegisterClass<f32, 32, [F0, F1, F2, F3, F4, F5, F6, F7, F8, +def FPRegs : RegisterClass<"V8", f32, 32, [F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21, F22, F23, F24, F25, F26, F27, F28, F29, F30, F31]>; -def DFPRegs : RegisterClass<f64, 64, [D0, D1, D2, D3, D4, D5, D6, D7, +def DFPRegs : RegisterClass<"V8", f64, 64, [D0, D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15]>; |