diff options
author | tstellar <tstellar@91177308-0d34-0410-b5e6-96231b3b80d8> | 2012-09-25 13:59:13 +0000 |
---|---|---|
committer | tstellar <tstellar@91177308-0d34-0410-b5e6-96231b3b80d8> | 2012-09-25 13:59:13 +0000 |
commit | 18e0b9e13783459ef7ad04180cc099315122fbc1 (patch) | |
tree | c5f7a47cd1ba984c19583c5b0ca90555e3050daf /lib/Target/AMDGPU/SIRegisterInfo.td | |
parent | 702e6564a2eb45a6cf8dd2ed9e58cbc57ebd3a17 (diff) |
AMDGPU: Fix register encoding
The register encodings weren't being defined correctly in the .td files,
so they were all encoded as 0.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/R600/@164602 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/AMDGPU/SIRegisterInfo.td')
-rw-r--r-- | lib/Target/AMDGPU/SIRegisterInfo.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/AMDGPU/SIRegisterInfo.td b/lib/Target/AMDGPU/SIRegisterInfo.td index d99d0176bc4..07850242b7f 100644 --- a/lib/Target/AMDGPU/SIRegisterInfo.td +++ b/lib/Target/AMDGPU/SIRegisterInfo.td @@ -66,7 +66,7 @@ def POS_FIXED_PT : SIReg <"POS_FIXED_PT">; // SGPR 32-bit registers foreach Index = 0-103 in { - def SGPR#Index : SGPR_32 <!cast<bits<16>>(Index), "SGPR"#Index>; + def SGPR#Index : SGPR_32 <Index, "SGPR"#Index>; } def SGPR_32 : RegisterClass<"AMDGPU", [f32, i32], 32, @@ -97,7 +97,7 @@ def SGPR_256 : RegisterTuples<[sub0, sub1, sub2, sub3, sub4, sub5, sub6, sub7], // VGPR 32-bit registers foreach Index = 0-255 in { - def VGPR#Index : VGPR_32 <!cast<bits<16>>(Index), "VGPR"#Index>; + def VGPR#Index : VGPR_32 <Index, "VGPR"#Index>; } def VGPR_32 : RegisterClass<"AMDGPU", [f32, i32], 32, |