diff options
author | Tom Stellard <[email protected]> | 2012-08-17 20:51:31 +0000 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-08-23 15:00:48 +0000 |
commit | 2de24024c1ca5366e76f449b115392a97808ef2d (patch) | |
tree | 93a7e792a8e0cc8c8ed9c2223fca290c1c1bb6eb /src/gallium/drivers/radeon | |
parent | 3f9b6aa0f467b8d918ce277697db2f42abe1cf4c (diff) |
radeon/llvm: Set 64BitPtr feature bit for SI
Diffstat (limited to 'src/gallium/drivers/radeon')
-rw-r--r-- | src/gallium/drivers/radeon/Processors.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/Processors.td b/src/gallium/drivers/radeon/Processors.td index ac6714ed27e..92f46367090 100644 --- a/src/gallium/drivers/radeon/Processors.td +++ b/src/gallium/drivers/radeon/Processors.td @@ -24,5 +24,5 @@ def : Proc<"barts", R600_EG_Itin, [FeatureByteAddress, FeatureImages]>; def : Proc<"turks", R600_EG_Itin, [FeatureByteAddress, FeatureImages]>; def : Proc<"caicos", R600_EG_Itin, [FeatureByteAddress, FeatureImages]>; def : Proc<"cayman", R600_EG_Itin, [FeatureByteAddress, FeatureImages, FeatureFP64]>; -def : Proc<"SI", SI_Itin, []>; +def : Proc<"SI", SI_Itin, [Feature64BitPtr]>; |