forked from OSchip/llvm-project
R600/SI: Add pattern for flog2
22 more little piglits with radeonsi. Reviewed-by: Tom Stellard <thomas.stellard@amd.com> llvm-svn: 174615
This commit is contained in:
parent
14727d7c68
commit
349cabed2f
|
@ -615,7 +615,9 @@ defm V_EXP_F32 : VOP1_32 <0x00000025, "V_EXP_F32",
|
|||
[(set VReg_32:$dst, (fexp2 AllReg_32:$src0))]
|
||||
>;
|
||||
defm V_LOG_CLAMP_F32 : VOP1_32 <0x00000026, "V_LOG_CLAMP_F32", []>;
|
||||
defm V_LOG_F32 : VOP1_32 <0x00000027, "V_LOG_F32", []>;
|
||||
defm V_LOG_F32 : VOP1_32 <0x00000027, "V_LOG_F32",
|
||||
[(set VReg_32:$dst, (flog2 AllReg_32:$src0))]
|
||||
>;
|
||||
defm V_RCP_CLAMP_F32 : VOP1_32 <0x00000028, "V_RCP_CLAMP_F32", []>;
|
||||
defm V_RCP_LEGACY_F32 : VOP1_32 <0x00000029, "V_RCP_LEGACY_F32", []>;
|
||||
defm V_RCP_F32 : VOP1_32 <0x0000002a, "V_RCP_F32",
|
||||
|
|
Loading…
Reference in New Issue