diff options
Diffstat (limited to 'llvm/lib/Target/AMDGPU/SIInstructions.td')
| -rw-r--r-- | llvm/lib/Target/AMDGPU/SIInstructions.td | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/AMDGPU/SIInstructions.td b/llvm/lib/Target/AMDGPU/SIInstructions.td index 927cb5fac33..ed75b4df8c0 100644 --- a/llvm/lib/Target/AMDGPU/SIInstructions.td +++ b/llvm/lib/Target/AMDGPU/SIInstructions.td @@ -2617,10 +2617,9 @@ def : Pat <  // Prevent expanding both fneg and fabs. -// FIXME: Should use S_OR_B32  def : Pat <    (fneg (fabs f32:$src)), -  (V_OR_B32_e32 $src, (V_MOV_B32_e32 0x80000000)) /* Set sign bit */ +  (S_OR_B32 $src, 0x80000000) /* Set sign bit */  >;  // FIXME: Should use S_OR_B32  | 

