From 029776753b69dc6054cabd8c2cc07c981ab20616 Mon Sep 17 00:00:00 2001 From: Vadim Girlin Date: Fri, 25 May 2012 17:23:06 +0400 Subject: [PATCH] radeon/llvm: fix opcode for RECIP_UINT_r600 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes https://bugs.freedesktop.org/show_bug.cgi?id=50312 Signed-off-by: Vadim Girlin Tested-by: Kai Wasserbäch Reviewed-by: Tom Stellard --- src/gallium/drivers/radeon/R600Instructions.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/radeon/R600Instructions.td b/src/gallium/drivers/radeon/R600Instructions.td index b56d03c..88a03ab 100644 --- a/src/gallium/drivers/radeon/R600Instructions.td +++ b/src/gallium/drivers/radeon/R600Instructions.td @@ -749,7 +749,7 @@ let Predicates = [isR600] in { def MULHI_INT_r600 : MULHI_INT_Common<0x74>; def MULLO_UINT_r600 : MULLO_UINT_Common<0x75>; def MULHI_UINT_r600 : MULHI_UINT_Common<0x76>; - def RECIP_UINT_r600 : RECIP_UINT_Common <0x77>; + def RECIP_UINT_r600 : RECIP_UINT_Common <0x78>; def DIV_r600 : DIV_Common; def POW_r600 : POW_Common; -- 2.7.4