From: Tom Stellard Date: Fri, 17 Aug 2012 20:51:31 +0000 (+0000) Subject: radeon/llvm: Set 64BitPtr feature bit for SI X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2de24024c1ca5366e76f449b115392a97808ef2d;p=mesa.git radeon/llvm: Set 64BitPtr feature bit for SI --- 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]>;