Skip to content

Commit f847c72

Browse files
authored
[AMDGPU] Use HasClamp instead of HasIntClamp in VOP3_Pseudo. NFC. (llvm#82020)
There is no real reason to differentiate.
1 parent 9478bf0 commit f847c72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/AMDGPU/VOPInstructions.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ class VOP3_Pseudo <string opName, VOPProfile P, list<dag> pattern = [],
161161
let AsmMatchConverter =
162162
!if(isVOP3P,
163163
"cvtVOP3P",
164-
!if(!or(P.HasModifiers, P.HasOMod, P.HasIntClamp),
164+
!if(!or(P.HasModifiers, P.HasOMod, P.HasClamp),
165165
"cvtVOP3",
166166
""));
167167
}

0 commit comments

Comments
 (0)