summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStanislav Mekhanoshin <rampitec@users.noreply.github.com>2024-02-17 00:48:37 -0800
committerGitHub <noreply@github.com>2024-02-17 00:48:37 -0800
commitf847c72be02e5b41e8139bf16de02dfd79476a52 (patch)
tree38321bac852cd1349539e55188d735dd07bb05ae
parent9478bf0ce625a5845139b0c9e3bb41ef88d2f005 (diff)
[AMDGPU] Use HasClamp instead of HasIntClamp in VOP3_Pseudo. NFC. (#82020)
There is no real reason to differentiate.
-rw-r--r--llvm/lib/Target/AMDGPU/VOPInstructions.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/AMDGPU/VOPInstructions.td b/llvm/lib/Target/AMDGPU/VOPInstructions.td
index f2bb58ed4c3b..dc6a48b1df74 100644
--- a/llvm/lib/Target/AMDGPU/VOPInstructions.td
+++ b/llvm/lib/Target/AMDGPU/VOPInstructions.td
@@ -161,7 +161,7 @@ class VOP3_Pseudo <string opName, VOPProfile P, list<dag> pattern = [],
let AsmMatchConverter =
!if(isVOP3P,
"cvtVOP3P",
- !if(!or(P.HasModifiers, P.HasOMod, P.HasIntClamp),
+ !if(!or(P.HasModifiers, P.HasOMod, P.HasClamp),
"cvtVOP3",
""));
}