[llvm] r232990 - R600/SI: Remove redundant unsetting of hasSideEffects

Matt Arsenault Matthew.Arsenault at amd.com
Mon Mar 23 11:45:37 PDT 2015


Author: arsenm
Date: Mon Mar 23 13:45:36 2015
New Revision: 232990

URL: http://llvm.org/viewvc/llvm-project?rev=232990&view=rev
Log:
R600/SI: Remove redundant unsetting of hasSideEffects

These are already set in the base class for the instruction.

Modified:
    llvm/trunk/lib/Target/R600/SIInstructions.td

Modified: llvm/trunk/lib/Target/R600/SIInstructions.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/R600/SIInstructions.td?rev=232990&r1=232989&r2=232990&view=diff
==============================================================================
--- llvm/trunk/lib/Target/R600/SIInstructions.td (original)
+++ llvm/trunk/lib/Target/R600/SIInstructions.td Mon Mar 23 13:45:36 2015
@@ -1717,14 +1717,12 @@ defm V_CUBEMA_F32 : VOP3Inst <vop3<0x147
   VOP_F32_F32_F32_F32
 >;
 
-let hasSideEffects = 0, mayLoad = 0, mayStore = 0 in {
 defm V_BFE_U32 : VOP3Inst <vop3<0x148, 0x1c8>, "v_bfe_u32",
   VOP_I32_I32_I32_I32, AMDGPUbfe_u32
 >;
 defm V_BFE_I32 : VOP3Inst <vop3<0x149, 0x1c9>, "v_bfe_i32",
   VOP_I32_I32_I32_I32, AMDGPUbfe_i32
 >;
-}
 
 defm V_BFI_B32 : VOP3Inst <vop3<0x14a, 0x1ca>, "v_bfi_b32",
   VOP_I32_I32_I32_I32, AMDGPUbfi





More information about the llvm-commits mailing list