[llvm] [AMDGPU][True16][MC] VINTERP instructions supporting true16/fake16 (PR #113634)
Joe Nash via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 5 13:34:45 PST 2024
================
@@ -0,0 +1,723 @@
+; NOTE: Assertions have been autogenerated by utils/update_mc_test_checks.py UTC_ARGS: --version 5
+# RUN: llvm-mc -triple=amdgcn -mcpu=gfx1100 -mattr=+real-true16 -disassemble %s | FileCheck -strict-whitespace -check-prefixes=CHECK,GFX11-TRUE16 %s
+# RUN: llvm-mc -triple=amdgcn -mcpu=gfx1200 -mattr=+real-true16 -disassemble %s | FileCheck -strict-whitespace -check-prefixes=CHECK,GFX12-TRUE16 %s
+# RUN: llvm-mc -triple=amdgcn -mcpu=gfx1100 -mattr=-real-true16 -disassemble %s | FileCheck -strict-whitespace -check-prefixes=CHECK,GFX11-FAKE16 %s
+# RUN: llvm-mc -triple=amdgcn -mcpu=gfx1200 -mattr=-real-true16 -disassemble %s | FileCheck -strict-whitespace -check-prefixes=CHECK,GFX12-FAKE16 %s
+
----------------
Sisyph wrote:
It looks like gfx11 and gfx12 do not differ. Can you therefore use a prefix that combines them? Say "CHECK-TRUE16" and "CHECK-FAKE16"?
https://github.com/llvm/llvm-project/pull/113634
More information about the llvm-commits
mailing list