[llvm] 13f8be6 - [AMDGPU] Use @LINE for error checking in gfx10 assembler tests

Jay Foad via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 7 10:27:23 PST 2020


Author: Jay Foad
Date: 2020-02-07T18:27:07Z
New Revision: 13f8be68e0b833e83f6501a8d76fedfcdc457331

URL: https://github.com/llvm/llvm-project/commit/13f8be68e0b833e83f6501a8d76fedfcdc457331
DIFF: https://github.com/llvm/llvm-project/commit/13f8be68e0b833e83f6501a8d76fedfcdc457331.diff

LOG: [AMDGPU] Use @LINE for error checking in gfx10 assembler tests

Summary:
This is a rework of D72611, using @LINE to check that errors are
reported against the right instruction instead of adding lots of extra
*-ERR-NEXT: check lines.

Reviewers: rampitec, arsenm, nhaehnle

Subscribers: kzhuravl, jvesely, wdng, yaxunl, dstuttard, tpr, t-tye, kerbowa, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D74227

Added: 
    

Modified: 
    llvm/test/MC/AMDGPU/gfx10_asm_all.s

Removed: 
    


################################################################################
diff  --git a/llvm/test/MC/AMDGPU/gfx10_asm_all.s b/llvm/test/MC/AMDGPU/gfx10_asm_all.s
index 98bf9cd398c5..8b61ad8c91a3 100644
--- a/llvm/test/MC/AMDGPU/gfx10_asm_all.s
+++ b/llvm/test/MC/AMDGPU/gfx10_asm_all.s
@@ -31990,28 +31990,22 @@ v_movrels_b32_sdwa v0, sext(v0) dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWO
 // GFX10: encoding: [0xf9,0x86,0x00,0x7e,0x00,0x06,0x0e,0x00]
 
 v_movrels_b32_e32 v5, s1
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_movrels_b32_e32 v5, s1
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_movrels_b32_e32 v5, 1
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_movrels_b32_e32 v5, 1
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_movrels_b32_e64 v5, s1
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_movrels_b32_e64 v5, s1
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_movrels_b32_e64 v5, 1
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_movrels_b32_e64 v5, 1
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_movrels_b32_sdwa v0, s2 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
-// GFX10-ERR: error: source operand must be a VGPR
-// GFX10-ERR-NEXT: v_movrels_b32_sdwa v0, s2 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: source operand must be a VGPR
 
 v_movrels_b32_sdwa v0, 1 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
-// GFX10-ERR: error: source operand must be a VGPR
-// GFX10-ERR-NEXT: v_movrels_b32_sdwa v0, 1 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: source operand must be a VGPR
 
 v_movrelsd_b32 v5, v1
 // GFX10: encoding: [0x01,0x89,0x0a,0x7e]
@@ -32041,28 +32035,22 @@ v_movrelsd_b32_sdwa v0, sext(v0) dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DW
 // GFX10: encoding: [0xf9,0x88,0x00,0x7e,0x00,0x06,0x0e,0x00]
 
 v_movrelsd_b32_e32 v5, s1
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_movrelsd_b32_e32 v5, s1
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_movrelsd_b32_e32 v5, 1
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_movrelsd_b32_e32 v5, 1
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_movrelsd_b32_e64 v5, s1
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_movrelsd_b32_e64 v5, s1
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_movrelsd_b32_e64 v5, 1
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_movrelsd_b32_e64 v5, 1
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_movrelsd_b32_sdwa v0, s2 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
-// GFX10-ERR: error: source operand must be a VGPR
-// GFX10-ERR-NEXT: v_movrelsd_b32_sdwa v0, s2 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: source operand must be a VGPR
 
 v_movrelsd_b32_sdwa v0, 1 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
-// GFX10-ERR: error: source operand must be a VGPR
-// GFX10-ERR-NEXT: v_movrelsd_b32_sdwa v0, 1 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: source operand must be a VGPR
 
 v_movrelsd_2_b32 v5, v1
 // GFX10: encoding: [0x01,0x91,0x0a,0x7e]
@@ -32092,32 +32080,25 @@ v_movrelsd_2_b32_sdwa v0, sext(v0) dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:
 // GFX10: encoding: [0xf9,0x90,0x00,0x7e,0x00,0x06,0x0e,0x00]
 
 v_movrelsd_2_b32_e32 v5, s1
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_movrelsd_2_b32_e32 v5, s1
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_movrelsd_2_b32_e32 v5, 1
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_movrelsd_2_b32_e32 v5, 1
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_movrelsd_2_b32_e64 v5, s1
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_movrelsd_2_b32_e64 v5, s1
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_movrelsd_2_b32_e64 v5, 1
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_movrelsd_2_b32_e64 v5, 1
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_movrelsd_2_b32_sdwa v0, s2 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
-// GFX10-ERR: error: source operand must be a VGPR
-// GFX10-ERR-NEXT: v_movrelsd_2_b32_sdwa v0, s2 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: source operand must be a VGPR
 
 v_movrelsd_2_b32_sdwa v0, 0 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
-// GFX10-ERR: error: source operand must be a VGPR
-// GFX10-ERR-NEXT: v_movrelsd_2_b32_sdwa v0, 0 dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: source operand must be a VGPR
 
 v_movrelsd_2_b32_sdwa v0, null dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
-// GFX10-ERR: error: source operand must be a VGPR
-// GFX10-ERR-NEXT: v_movrelsd_2_b32_sdwa v0, null dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: source operand must be a VGPR
 
 v_cvt_f16_u16_e32 v5, v1
 // GFX10: encoding: [0x01,0xa1,0x0a,0x7e]
@@ -37225,233 +37206,187 @@ v_swaprel_b32 v5, v255
 
 v_cndmask_b32_e32 v5, v1, v2, vcc
 // W64: encoding: [0x01,0x05,0x0a,0x02]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cndmask_b32_e32 v5, v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v255, v1, v2, vcc
 // W64: encoding: [0x01,0x05,0xfe,0x03]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cndmask_b32_e32 v255, v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v5, v255, v2, vcc
 // W64: encoding: [0xff,0x05,0x0a,0x02]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cndmask_b32_e32 v5, v255, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v5, 0, v2, vcc
 // W64: encoding: [0x80,0x04,0x0a,0x02]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cndmask_b32_e32 v5, 0, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v5, -1, v2, vcc
 // W64: encoding: [0xc1,0x04,0x0a,0x02]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cndmask_b32_e32 v5, -1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v5, 0.5, v2, vcc
 // W64: encoding: [0xf0,0x04,0x0a,0x02]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cndmask_b32_e32 v5, 0.5, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v5, -4.0, v2, vcc
 // W64: encoding: [0xf7,0x04,0x0a,0x02]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cndmask_b32_e32 v5, -4.0, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v5, v1, v255, vcc
 // W64: encoding: [0x01,0xff,0x0b,0x02]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cndmask_b32_e32 v5, v1, v255, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e64 v5, v1, v2, s[6:7]
 // W64: encoding: [0x05,0x00,0x01,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v255, v1, v2, s[6:7]
 // W64: encoding: [0xff,0x00,0x01,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v255, v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v255, v2, s[6:7]
 // W64: encoding: [0x05,0x00,0x01,0xd5,0xff,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, v255, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, 0, v2, s[6:7]
 // W64: encoding: [0x05,0x00,0x01,0xd5,0x80,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, 0, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, -1, v2, s[6:7]
 // W64: encoding: [0x05,0x00,0x01,0xd5,0xc1,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, -1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, 0.5, v2, s[6:7]
 // W64: encoding: [0x05,0x00,0x01,0xd5,0xf0,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, 0.5, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, -4.0, v2, s[6:7]
 // W64: encoding: [0x05,0x00,0x01,0xd5,0xf7,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, -4.0, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, v255, s[6:7]
 // W64: encoding: [0x05,0x00,0x01,0xd5,0x01,0xff,0x1b,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, v1, v255, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, 0, s[6:7]
 // W64: encoding: [0x05,0x00,0x01,0xd5,0x01,0x01,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, v1, 0, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, -1, s[6:7]
 // W64: encoding: [0x05,0x00,0x01,0xd5,0x01,0x83,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, v1, -1, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, 0.5, s[6:7]
 // W64: encoding: [0x05,0x00,0x01,0xd5,0x01,0xe1,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, v1, 0.5, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, -4.0, s[6:7]
 // W64: encoding: [0x05,0x00,0x01,0xd5,0x01,0xef,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, v1, -4.0, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, v2, s[8:9]
 // W64: encoding: [0x05,0x00,0x01,0xd5,0x01,0x05,0x22,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, v1, v2, s[8:9]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, v2, s[100:101]
 // W64: encoding: [0x05,0x00,0x01,0xd5,0x01,0x05,0x92,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, v1, v2, s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, v2, vcc
 // W64: encoding: [0x05,0x00,0x01,0xd5,0x01,0x05,0xaa,0x01]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cndmask_b32_e64 v5, v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v5, v1, v2, vcc_lo
 // W32: encoding: [0x01,0x05,0x0a,0x02]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cndmask_b32_e32 v5, v1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v255, v1, v2, vcc_lo
 // W32: encoding: [0x01,0x05,0xfe,0x03]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cndmask_b32_e32 v255, v1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v5, v255, v2, vcc_lo
 // W32: encoding: [0xff,0x05,0x0a,0x02]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cndmask_b32_e32 v5, v255, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v5, 0, v2, vcc_lo
 // W32: encoding: [0x80,0x04,0x0a,0x02]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cndmask_b32_e32 v5, 0, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v5, -1, v2, vcc_lo
 // W32: encoding: [0xc1,0x04,0x0a,0x02]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cndmask_b32_e32 v5, -1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v5, 0.5, v2, vcc_lo
 // W32: encoding: [0xf0,0x04,0x0a,0x02]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cndmask_b32_e32 v5, 0.5, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v5, -4.0, v2, vcc_lo
 // W32: encoding: [0xf7,0x04,0x0a,0x02]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cndmask_b32_e32 v5, -4.0, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e32 v5, v1, v255, vcc_lo
 // W32: encoding: [0x01,0xff,0x0b,0x02]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cndmask_b32_e32 v5, v1, v255, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cndmask_b32_e64 v5, v1, v2, s6
 // W32: encoding: [0x05,0x00,0x01,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v255, v1, v2, s6
 // W32: encoding: [0xff,0x00,0x01,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v255, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v255, v2, s6
 // W32: encoding: [0x05,0x00,0x01,0xd5,0xff,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, v255, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, 0, v2, s6
 // W32: encoding: [0x05,0x00,0x01,0xd5,0x80,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, 0, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, -1, v2, s6
 // W32: encoding: [0x05,0x00,0x01,0xd5,0xc1,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, -1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, 0.5, v2, s6
 // W32: encoding: [0x05,0x00,0x01,0xd5,0xf0,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, 0.5, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, -4.0, v2, s6
 // W32: encoding: [0x05,0x00,0x01,0xd5,0xf7,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, -4.0, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, v255, s6
 // W32: encoding: [0x05,0x00,0x01,0xd5,0x01,0xff,0x1b,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, v1, v255, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, 0, s6
 // W32: encoding: [0x05,0x00,0x01,0xd5,0x01,0x01,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, v1, 0, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, -1, s6
 // W32: encoding: [0x05,0x00,0x01,0xd5,0x01,0x83,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, v1, -1, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, 0.5, s6
 // W32: encoding: [0x05,0x00,0x01,0xd5,0x01,0xe1,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, v1, 0.5, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, -4.0, s6
 // W32: encoding: [0x05,0x00,0x01,0xd5,0x01,0xef,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, v1, -4.0, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, v2, s8
 // W32: encoding: [0x05,0x00,0x01,0xd5,0x01,0x05,0x22,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, v1, v2, s8
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, v2, s100
 // W32: encoding: [0x05,0x00,0x01,0xd5,0x01,0x05,0x92,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, v1, v2, s100
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cndmask_b32_e64 v5, v1, v2, vcc_lo
 // W32: encoding: [0x05,0x00,0x01,0xd5,0x01,0x05,0xaa,0x01]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cndmask_b32_e64 v5, v1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_f32_e32 v5, v1, v2
 // GFX10: encoding: [0x01,0x05,0x0a,0x06]
@@ -45930,1713 +45865,1371 @@ v_subrev_nc_u32_sdwa v5, v1, sext(v2) dst_sel:DWORD dst_unused:UNUSED_PAD src0_s
 
 v_add_co_ci_u32_e32 v5, vcc, v1, v2, vcc
 // W64: encoding: [0x01,0x05,0x0a,0x50]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc, v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v255, vcc, v1, v2, vcc
 // W64: encoding: [0x01,0x05,0xfe,0x51]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_e32 v255, vcc, v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v5, vcc, v255, v2, vcc
 // W64: encoding: [0xff,0x05,0x0a,0x50]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc, v255, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v5, vcc, 0, v2, vcc
 // W64: encoding: [0x80,0x04,0x0a,0x50]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc, 0, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v5, vcc, -1, v2, vcc
 // W64: encoding: [0xc1,0x04,0x0a,0x50]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc, -1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v5, vcc, 0.5, v2, vcc
 // W64: encoding: [0xf0,0x04,0x0a,0x50]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc, 0.5, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v5, vcc, -4.0, v2, vcc
 // W64: encoding: [0xf7,0x04,0x0a,0x50]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc, -4.0, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v5, vcc, v1, v255, vcc
 // W64: encoding: [0x01,0xff,0x0b,0x50]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc, v1, v255, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e64 v5, s[12:13], v1, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v255, s[12:13], v1, v2, s[6:7]
 // W64: encoding: [0xff,0x0c,0x28,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v255, s[12:13], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[14:15], v1, v2, s[6:7]
 // W64: encoding: [0x05,0x0e,0x28,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[14:15], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[102:103], v1, v2, s[6:7]
 // W64: encoding: [0x05,0x66,0x28,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[102:103], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, vcc, v1, v2, s[6:7]
 // W64: encoding: [0x05,0x6a,0x28,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, vcc, v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[12:13], v255, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0xff,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], v255, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[12:13], 0, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0x80,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], 0, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[12:13], -1, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0xc1,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], -1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[12:13], 0.5, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0xf0,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], 0.5, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[12:13], -4.0, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0xf7,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], -4.0, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[12:13], v1, v255, s[6:7]
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0x01,0xff,0x1b,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], v1, v255, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[12:13], v1, 0, s[6:7]
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x01,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], v1, 0, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[12:13], v1, -1, s[6:7]
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x83,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], v1, -1, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[12:13], v1, 0.5, s[6:7]
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0x01,0xe1,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], v1, 0.5, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[12:13], v1, -4.0, s[6:7]
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0x01,0xef,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], v1, -4.0, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[12:13], v1, v2, s[8:9]
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x05,0x22,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], v1, v2, s[8:9]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[12:13], v1, v2, s[102:103]
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x05,0x9a,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], v1, v2, s[102:103]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s[12:13], v1, v2, vcc
 // W64: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x05,0xaa,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_ci_u32_e64 v5, s[12:13], v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e32 v5, vcc_lo, v1, v2, vcc_lo
 // W32: encoding: [0x01,0x05,0x0a,0x50]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc_lo, v1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v255, vcc_lo, v1, v2, vcc_lo
 // W32: encoding: [0x01,0x05,0xfe,0x51]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_e32 v255, vcc_lo, v1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v5, vcc_lo, v255, v2, vcc_lo
 // W32: encoding: [0xff,0x05,0x0a,0x50]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc_lo, v255, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v5, vcc_lo, 0, v2, vcc_lo
 // W32: encoding: [0x80,0x04,0x0a,0x50]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc_lo, 0, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v5, vcc_lo, -1, v2, vcc_lo
 // W32: encoding: [0xc1,0x04,0x0a,0x50]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc_lo, -1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v5, vcc_lo, 0.5, v2, vcc_lo
 // W32: encoding: [0xf0,0x04,0x0a,0x50]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc_lo, 0.5, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v5, vcc_lo, -4.0, v2, vcc_lo
 // W32: encoding: [0xf7,0x04,0x0a,0x50]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc_lo, -4.0, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e32 v5, vcc_lo, v1, v255, vcc_lo
 // W32: encoding: [0x01,0xff,0x0b,0x50]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_e32 v5, vcc_lo, v1, v255, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_e64 v5, s12, v1, v2, s6
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v255, s12, v1, v2, s6
 // W32: encoding: [0xff,0x0c,0x28,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v255, s12, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s14, v1, v2, s6
 // W32: encoding: [0x05,0x0e,0x28,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s14, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s102, v1, v2, s6
 // W32: encoding: [0x05,0x66,0x28,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s102, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, vcc_lo, v1, v2, s6
 // W32: encoding: [0x05,0x6a,0x28,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, vcc_lo, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s12, v255, v2, s6
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0xff,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, v255, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s12, 0, v2, s6
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0x80,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, 0, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s12, -1, v2, s6
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0xc1,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, -1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s12, 0.5, v2, s6
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0xf0,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, 0.5, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s12, -4.0, v2, s6
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0xf7,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, -4.0, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s12, v1, v255, s6
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0x01,0xff,0x1b,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, v1, v255, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s12, v1, 0, s6
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x01,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, v1, 0, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s12, v1, -1, s6
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x83,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, v1, -1, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s12, v1, 0.5, s6
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0x01,0xe1,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, v1, 0.5, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s12, v1, -4.0, s6
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0x01,0xef,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, v1, -4.0, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s12, v1, v2, s8
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x05,0x22,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, v1, v2, s8
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s12, v1, v2, s102
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x05,0x9a,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, v1, v2, s102
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_e64 v5, s12, v1, v2, vcc_lo
 // W32: encoding: [0x05,0x0c,0x28,0xd5,0x01,0x05,0xaa,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_ci_u32_e64 v5, s12, v1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v255, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xfe,0x51,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v255, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v255, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0xff,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v255, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v255, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x0b,0x50,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v255, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x26,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x01,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x02,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x03,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x04,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x05,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x0e,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x16,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x16,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x00,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x01,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x02,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x03,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x04,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x05,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, sext(v1), v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x0e,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, sext(v1), v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x01]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x02]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x03]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x04]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x05]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc, v1, sext(v2), vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x0e]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc, v1, sext(v2), vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v255, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xfe,0x51,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v255, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v255, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0xff,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v255, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v255, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x0b,0x50,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v255, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x26,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x00,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x01,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x02,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x03,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x04,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x05,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x0e,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x16,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x16,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x00,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x01,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x02,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x03,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x04,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x05,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, sext(v1), v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x0e,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, sext(v1), v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x01]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x02]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x03]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x04]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x05]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_add_co_ci_u32_sdwa v5, vcc_lo, v1, sext(v2), vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x50,0x01,0x06,0x06,0x0e]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_add_co_ci_u32_sdwa v5, vcc_lo, v1, sext(v2), vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v5, vcc, v1, v2, vcc
 // W64: encoding: [0x01,0x05,0x0a,0x52]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc, v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v255, vcc, v1, v2, vcc
 // W64: encoding: [0x01,0x05,0xfe,0x53]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_e32 v255, vcc, v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v5, vcc, v255, v2, vcc
 // W64: encoding: [0xff,0x05,0x0a,0x52]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc, v255, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v5, vcc, 0, v2, vcc
 // W64: encoding: [0x80,0x04,0x0a,0x52]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc, 0, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v5, vcc, -1, v2, vcc
 // W64: encoding: [0xc1,0x04,0x0a,0x52]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc, -1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v5, vcc, 0.5, v2, vcc
 // W64: encoding: [0xf0,0x04,0x0a,0x52]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc, 0.5, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v5, vcc, -4.0, v2, vcc
 // W64: encoding: [0xf7,0x04,0x0a,0x52]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc, -4.0, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v5, vcc, v1, v255, vcc
 // W64: encoding: [0x01,0xff,0x0b,0x52]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc, v1, v255, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e64 v5, s[12:13], v1, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v255, s[12:13], v1, v2, s[6:7]
 // W64: encoding: [0xff,0x0c,0x29,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v255, s[12:13], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[14:15], v1, v2, s[6:7]
 // W64: encoding: [0x05,0x0e,0x29,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[14:15], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[102:103], v1, v2, s[6:7]
 // W64: encoding: [0x05,0x66,0x29,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[102:103], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, vcc, v1, v2, s[6:7]
 // W64: encoding: [0x05,0x6a,0x29,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, vcc, v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[12:13], v255, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0xff,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], v255, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[12:13], 0, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0x80,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], 0, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[12:13], -1, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0xc1,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], -1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[12:13], 0.5, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0xf0,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], 0.5, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[12:13], -4.0, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0xf7,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], -4.0, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[12:13], v1, v255, s[6:7]
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0x01,0xff,0x1b,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], v1, v255, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[12:13], v1, 0, s[6:7]
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x01,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], v1, 0, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[12:13], v1, -1, s[6:7]
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x83,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], v1, -1, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[12:13], v1, 0.5, s[6:7]
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0x01,0xe1,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], v1, 0.5, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[12:13], v1, -4.0, s[6:7]
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0x01,0xef,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], v1, -4.0, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[12:13], v1, v2, s[8:9]
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x05,0x22,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], v1, v2, s[8:9]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[12:13], v1, v2, s[102:103]
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x05,0x9a,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], v1, v2, s[102:103]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s[12:13], v1, v2, vcc
 // W64: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x05,0xaa,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s[12:13], v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e32 v5, vcc_lo, v1, v2, vcc_lo
 // W32: encoding: [0x01,0x05,0x0a,0x52]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc_lo, v1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v255, vcc_lo, v1, v2, vcc_lo
 // W32: encoding: [0x01,0x05,0xfe,0x53]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_e32 v255, vcc_lo, v1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v5, vcc_lo, v255, v2, vcc_lo
 // W32: encoding: [0xff,0x05,0x0a,0x52]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc_lo, v255, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v5, vcc_lo, 0, v2, vcc_lo
 // W32: encoding: [0x80,0x04,0x0a,0x52]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc_lo, 0, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v5, vcc_lo, -1, v2, vcc_lo
 // W32: encoding: [0xc1,0x04,0x0a,0x52]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc_lo, -1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v5, vcc_lo, 0.5, v2, vcc_lo
 // W32: encoding: [0xf0,0x04,0x0a,0x52]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc_lo, 0.5, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v5, vcc_lo, -4.0, v2, vcc_lo
 // W32: encoding: [0xf7,0x04,0x0a,0x52]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc_lo, -4.0, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e32 v5, vcc_lo, v1, v255, vcc_lo
 // W32: encoding: [0x01,0xff,0x0b,0x52]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_e32 v5, vcc_lo, v1, v255, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_e64 v5, s12, v1, v2, s6
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v255, s12, v1, v2, s6
 // W32: encoding: [0xff,0x0c,0x29,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v255, s12, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s14, v1, v2, s6
 // W32: encoding: [0x05,0x0e,0x29,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s14, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s102, v1, v2, s6
 // W32: encoding: [0x05,0x66,0x29,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s102, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, vcc_lo, v1, v2, s6
 // W32: encoding: [0x05,0x6a,0x29,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, vcc_lo, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s12, v255, v2, s6
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0xff,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, v255, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s12, 0, v2, s6
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0x80,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, 0, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s12, -1, v2, s6
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0xc1,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, -1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s12, 0.5, v2, s6
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0xf0,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, 0.5, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s12, -4.0, v2, s6
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0xf7,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, -4.0, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s12, v1, v255, s6
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0x01,0xff,0x1b,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, v1, v255, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s12, v1, 0, s6
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x01,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, v1, 0, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s12, v1, -1, s6
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x83,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, v1, -1, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s12, v1, 0.5, s6
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0x01,0xe1,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, v1, 0.5, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s12, v1, -4.0, s6
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0x01,0xef,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, v1, -4.0, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s12, v1, v2, s8
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x05,0x22,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, v1, v2, s8
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s12, v1, v2, s102
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x05,0x9a,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, v1, v2, s102
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_e64 v5, s12, v1, v2, vcc_lo
 // W32: encoding: [0x05,0x0c,0x29,0xd5,0x01,0x05,0xaa,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_ci_u32_e64 v5, s12, v1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v255, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xfe,0x53,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v255, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v255, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0xff,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v255, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v255, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x0b,0x52,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v255, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x26,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x01,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x02,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x03,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x04,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x05,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x0e,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x16,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x16,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x00,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x01,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x02,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x03,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x04,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x05,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, sext(v1), v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x0e,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, sext(v1), v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x01]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x02]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x03]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x04]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x05]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc, v1, sext(v2), vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x0e]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc, v1, sext(v2), vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v255, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xfe,0x53,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v255, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v255, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0xff,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v255, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v255, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x0b,0x52,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v255, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x26,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x00,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x01,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x02,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x03,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x04,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x05,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x0e,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x16,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x16,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x00,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x01,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x02,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x03,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x04,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x05,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, sext(v1), v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x0e,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, sext(v1), v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x01]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x02]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x03]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x04]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x05]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, sext(v2), vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x52,0x01,0x06,0x06,0x0e]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_sub_co_ci_u32_sdwa v5, vcc_lo, v1, sext(v2), vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v5, vcc, v1, v2, vcc
 // W64: encoding: [0x01,0x05,0x0a,0x54]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc, v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v255, vcc, v1, v2, vcc
 // W64: encoding: [0x01,0x05,0xfe,0x55]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e32 v255, vcc, v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v5, vcc, v255, v2, vcc
 // W64: encoding: [0xff,0x05,0x0a,0x54]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc, v255, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v5, vcc, 0, v2, vcc
 // W64: encoding: [0x80,0x04,0x0a,0x54]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc, 0, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v5, vcc, -1, v2, vcc
 // W64: encoding: [0xc1,0x04,0x0a,0x54]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc, -1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v5, vcc, 0.5, v2, vcc
 // W64: encoding: [0xf0,0x04,0x0a,0x54]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc, 0.5, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v5, vcc, -4.0, v2, vcc
 // W64: encoding: [0xf7,0x04,0x0a,0x54]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc, -4.0, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v5, vcc, v1, v255, vcc
 // W64: encoding: [0x01,0xff,0x0b,0x54]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc, v1, v255, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], v1, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v255, s[12:13], v1, v2, s[6:7]
 // W64: encoding: [0xff,0x0c,0x2a,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v255, s[12:13], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[14:15], v1, v2, s[6:7]
 // W64: encoding: [0x05,0x0e,0x2a,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[14:15], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[102:103], v1, v2, s[6:7]
 // W64: encoding: [0x05,0x66,0x2a,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[102:103], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, vcc, v1, v2, s[6:7]
 // W64: encoding: [0x05,0x6a,0x2a,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, vcc, v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], v255, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0xff,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], v255, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], 0, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0x80,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], 0, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], -1, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0xc1,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], -1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], 0.5, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0xf0,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], 0.5, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], -4.0, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0xf7,0x04,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], -4.0, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], v1, v255, s[6:7]
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0xff,0x1b,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], v1, v255, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], v1, 0, s[6:7]
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x01,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], v1, 0, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], v1, -1, s[6:7]
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x83,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], v1, -1, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], v1, 0.5, s[6:7]
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0xe1,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], v1, 0.5, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], v1, -4.0, s[6:7]
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0xef,0x19,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], v1, -4.0, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], v1, v2, s[8:9]
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x05,0x22,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], v1, v2, s[8:9]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], v1, v2, s[102:103]
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x05,0x9a,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], v1, v2, s[102:103]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s[12:13], v1, v2, vcc
 // W64: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x05,0xaa,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s[12:13], v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e32 v5, vcc_lo, v1, v2, vcc_lo
 // W32: encoding: [0x01,0x05,0x0a,0x54]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc_lo, v1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v255, vcc_lo, v1, v2, vcc_lo
 // W32: encoding: [0x01,0x05,0xfe,0x55]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e32 v255, vcc_lo, v1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v5, vcc_lo, v255, v2, vcc_lo
 // W32: encoding: [0xff,0x05,0x0a,0x54]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc_lo, v255, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v5, vcc_lo, 0, v2, vcc_lo
 // W32: encoding: [0x80,0x04,0x0a,0x54]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc_lo, 0, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v5, vcc_lo, -1, v2, vcc_lo
 // W32: encoding: [0xc1,0x04,0x0a,0x54]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc_lo, -1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v5, vcc_lo, 0.5, v2, vcc_lo
 // W32: encoding: [0xf0,0x04,0x0a,0x54]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc_lo, 0.5, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v5, vcc_lo, -4.0, v2, vcc_lo
 // W32: encoding: [0xf7,0x04,0x0a,0x54]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc_lo, -4.0, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e32 v5, vcc_lo, v1, v255, vcc_lo
 // W32: encoding: [0x01,0xff,0x0b,0x54]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e32 v5, vcc_lo, v1, v255, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_e64 v5, s12, v1, v2, s6
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v255, s12, v1, v2, s6
 // W32: encoding: [0xff,0x0c,0x2a,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v255, s12, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s14, v1, v2, s6
 // W32: encoding: [0x05,0x0e,0x2a,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s14, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s102, v1, v2, s6
 // W32: encoding: [0x05,0x66,0x2a,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s102, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, vcc_lo, v1, v2, s6
 // W32: encoding: [0x05,0x6a,0x2a,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, vcc_lo, v1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s12, v255, v2, s6
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0xff,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, v255, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s12, 0, v2, s6
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0x80,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, 0, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s12, -1, v2, s6
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0xc1,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, -1, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s12, 0.5, v2, s6
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0xf0,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, 0.5, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s12, -4.0, v2, s6
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0xf7,0x04,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, -4.0, v2, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s12, v1, v255, s6
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0xff,0x1b,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, v1, v255, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s12, v1, 0, s6
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x01,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, v1, 0, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s12, v1, -1, s6
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x83,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, v1, -1, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s12, v1, 0.5, s6
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0xe1,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, v1, 0.5, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s12, v1, -4.0, s6
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0xef,0x19,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, v1, -4.0, s6
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s12, v1, v2, s8
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x05,0x22,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, v1, v2, s8
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s12, v1, v2, s102
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x05,0x9a,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, v1, v2, s102
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_e64 v5, s12, v1, v2, vcc_lo
 // W32: encoding: [0x05,0x0c,0x2a,0xd5,0x01,0x05,0xaa,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_ci_u32_e64 v5, s12, v1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v255, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xfe,0x55,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v255, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v255, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0xff,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v255, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v255, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x0b,0x54,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v255, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x26,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x01,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x02,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x03,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x04,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x05,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x0e,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x16,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x16,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x00,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x01,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x02,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x03,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x04,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x05,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, sext(v1), v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x0e,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, sext(v1), v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x01]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x02]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x03]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x04]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x05]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, v2, vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc, v1, sext(v2), vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x0e]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc, v1, sext(v2), vcc dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v255, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xfe,0x55,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v255, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v255, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0xff,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v255, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v255, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x0b,0x54,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v255, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x26,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo clamp dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x00,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x01,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x02,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_2 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x03,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:BYTE_3 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x04,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_0 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x05,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x0e,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_SEXT src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x16,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PRESERVE src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x16,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x00,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x01,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x02,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x03,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x04,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x05,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, sext(v1), v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x0e,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, sext(v1), v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x06]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x01]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x02]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x03]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x04]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x05]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, v2, vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, sext(v2), vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x54,0x01,0x06,0x06,0x0e]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_subrev_co_ci_u32_sdwa v5, vcc_lo, v1, sext(v2), vcc_lo dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_fmac_f32_e32 v5, v1, v2
 // GFX10: encoding: [0x01,0x05,0x0a,0x56]
@@ -51037,843 +50630,675 @@ v_mbcnt_hi_u32_b32 v5, v1, -4.0
 
 v_add_co_u32 v5, s0, v1, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v255, s0, v1, v2
 // W32: encoding: [0xff,0x00,0x0f,0xd7,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v255, s0, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v255, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, s1, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, s103, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x67,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, s103, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, vcc_lo, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, vcc_hi, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, ttmp11, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x77,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, ttmp11, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, m0, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, exec_lo, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, exec_hi, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, 0, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, -1, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, 0.5, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, -4.0, v2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v1, v255
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v1, s2
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v1, s103
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xcf,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, s103
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v1, vcc_lo
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v1, vcc_hi
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v1, ttmp11
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xef,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, ttmp11
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v1, m0
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v1, exec_lo
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v1, exec_hi
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v1, 0
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v1, -1
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v1, 0.5
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s0, v1, -4.0
 // W32: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_add_co_u32 v5, s0, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v255, s[0:1], v1, v2
 // W64: encoding: [0xff,0x00,0x0f,0xd7,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v255, s[0:1], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v255, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], s1, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], s103, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x67,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], s103, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], vcc_lo, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], vcc_hi, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], ttmp11, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x77,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], ttmp11, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], m0, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], exec_lo, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], exec_hi, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], 0, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], -1, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], 0.5, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], -4.0, v2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, v255
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, s2
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, s103
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xcf,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, s103
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, vcc_lo
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, vcc_hi
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, ttmp11
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xef,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, ttmp11
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, m0
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, exec_lo
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, exec_hi
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, 0
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, -1
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, 0.5
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_add_co_u32 v5, s[0:1], v1, -4.0
 // W64: encoding: [0x05,0x00,0x0f,0xd7,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_add_co_u32 v5, s[0:1], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v255, s0, v1, v2
 // W32: encoding: [0xff,0x00,0x10,0xd7,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v255, s0, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v255, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, s1, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, s103, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x67,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, s103, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, vcc_lo, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, vcc_hi, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, ttmp11, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x77,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, ttmp11, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, m0, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, exec_lo, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, exec_hi, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, 0, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, -1, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, 0.5, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, -4.0, v2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, v255
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, s2
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, s103
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0xcf,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, s103
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, vcc_lo
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, vcc_hi
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, ttmp11
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0xef,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, ttmp11
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, m0
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, exec_lo
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, exec_hi
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, 0
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, -1
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, 0.5
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s0, v1, -4.0
 // W32: encoding: [0x05,0x00,0x10,0xd7,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_sub_co_u32 v5, s0, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v255, s[0:1], v1, v2
 // W64: encoding: [0xff,0x00,0x10,0xd7,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v255, s[0:1], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v255, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], s1, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], s103, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x67,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], s103, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], vcc_lo, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], vcc_hi, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], ttmp11, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x77,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], ttmp11, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], m0, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], exec_lo, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], exec_hi, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], 0, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], -1, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], 0.5, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], -4.0, v2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, v255
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, s2
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, s103
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0xcf,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, s103
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, vcc_lo
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, vcc_hi
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, ttmp11
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0xef,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, ttmp11
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, m0
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, exec_lo
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, exec_hi
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, 0
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, -1
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, 0.5
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_sub_co_u32 v5, s[0:1], v1, -4.0
 // W64: encoding: [0x05,0x00,0x10,0xd7,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_sub_co_u32 v5, s[0:1], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v255, s0, v1, v2
 // W32: encoding: [0xff,0x00,0x19,0xd7,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v255, s0, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v255, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, s1, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, s103, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x67,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, s103, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, vcc_lo, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, vcc_hi, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, ttmp11, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x77,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, ttmp11, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, m0, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, exec_lo, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, exec_hi, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, 0, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, -1, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, 0.5, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, -4.0, v2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, v255
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, s2
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, s103
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0xcf,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, s103
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, vcc_lo
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, vcc_hi
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, ttmp11
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0xef,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, ttmp11
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, m0
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, exec_lo
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, exec_hi
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, 0
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, -1
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, 0.5
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s0, v1, -4.0
 // W32: encoding: [0x05,0x00,0x19,0xd7,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_subrev_co_u32 v5, s0, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v255, s[0:1], v1, v2
 // W64: encoding: [0xff,0x00,0x19,0xd7,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v255, s[0:1], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v255, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], s1, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], s103, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x67,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], s103, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], vcc_lo, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], vcc_hi, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], ttmp11, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x77,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], ttmp11, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], m0, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], exec_lo, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], exec_hi, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], 0, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], -1, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], 0.5, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], -4.0, v2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, v255
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, s2
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, s103
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0xcf,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, s103
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, vcc_lo
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, vcc_hi
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, ttmp11
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0xef,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, ttmp11
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, m0
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, exec_lo
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, exec_hi
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, 0
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, -1
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, 0.5
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_subrev_co_u32 v5, s[0:1], v1, -4.0
 // W64: encoding: [0x05,0x00,0x19,0xd7,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_subrev_co_u32 v5, s[0:1], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_ldexp_f32 v5, v1, v2
 // GFX10: encoding: [0x05,0x00,0x62,0xd7,0x01,0x05,0x02,0x00]
@@ -57577,413 +57002,331 @@ v_mul_hi_i32 v5, v1, -4.0
 
 v_div_scale_f32 v5, s0, v1, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v255, s0, v1, v2, v3
 // W32: encoding: [0xff,0x00,0x6d,0xd5,0x01,0x05,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v255, s0, v1, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v255, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0xff,0x05,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v255, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, s1, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, s1, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, s103, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x67,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, s103, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, vcc_lo, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x6a,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, vcc_lo, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, vcc_hi, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x6b,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, vcc_hi, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, ttmp11, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x77,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, ttmp11, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, m0, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x7c,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, m0, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, exec_lo, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x7e,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, exec_lo, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, exec_hi, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x7f,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, exec_hi, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, 0, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x80,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, 0, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, -1, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0xc1,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, -1, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, 0.5, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0xf0,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, 0.5, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, -4.0, v2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0xf7,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, -4.0, v2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v255, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xff,0x0f,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v255, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, s2, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, s2, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, s103, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xcf,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, s103, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, vcc_lo, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xd5,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, vcc_lo, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, vcc_hi, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xd7,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, vcc_hi, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, ttmp11, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xef,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, ttmp11, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, m0, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xf9,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, m0, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, exec_lo, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xfd,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, exec_lo, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, exec_hi, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xff,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, exec_hi, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, 0, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x01,0x0d,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, 0, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, -1, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x83,0x0d,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, -1, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, 0.5, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xe1,0x0d,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, 0.5, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, -4.0, v3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xef,0x0d,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, -4.0, v3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v2, v255
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xfe,0x07]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v2, s3
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0x0e,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, s3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v2, s103
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0x9e,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, s103
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v2, vcc_lo
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xaa,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v2, vcc_hi
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xae,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v2, ttmp11
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xde,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, ttmp11
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v2, m0
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xf2,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v2, exec_lo
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xfa,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v2, exec_hi
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xfe,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v2, 0
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0x02,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v2, -1
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v2, 0.5
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xc2,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s0, v1, v2, -4.0
 // W32: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xde,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_div_scale_f32 v5, s0, v1, v2, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v255, s[0:1], v1, v2, v3
 // W64: encoding: [0xff,0x00,0x6d,0xd5,0x01,0x05,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v255, s[0:1], v1, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v255, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0xff,0x05,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v255, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], s1, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], s1, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], s103, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x67,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], s103, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], vcc_lo, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x6a,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], vcc_lo, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], vcc_hi, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x6b,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], vcc_hi, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], ttmp11, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x77,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], ttmp11, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], m0, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x7c,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], m0, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], exec_lo, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x7e,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], exec_lo, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], exec_hi, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x7f,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], exec_hi, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], 0, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x80,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], 0, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], -1, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0xc1,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], -1, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], 0.5, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0xf0,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], 0.5, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], -4.0, v2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0xf7,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], -4.0, v2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v255, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xff,0x0f,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v255, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, s2, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, s2, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, s103, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xcf,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, s103, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, vcc_lo, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xd5,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, vcc_lo, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, vcc_hi, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xd7,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, vcc_hi, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, ttmp11, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xef,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, ttmp11, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, m0, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xf9,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, m0, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, exec_lo, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xfd,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, exec_lo, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, exec_hi, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xff,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, exec_hi, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, 0, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x01,0x0d,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, 0, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, -1, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x83,0x0d,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, -1, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, 0.5, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xe1,0x0d,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, 0.5, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, -4.0, v3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0xef,0x0d,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, -4.0, v3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, v255
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xfe,0x07]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, s3
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0x0e,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, s3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, s103
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0x9e,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, s103
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, vcc_lo
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xaa,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, vcc_hi
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xae,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, ttmp11
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xde,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, ttmp11
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, m0
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xf2,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, exec_lo
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xfa,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, exec_hi
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xfe,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, 0
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0x02,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, -1
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, 0.5
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xc2,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_scale_f32 v5, s[0:1], v1, v2, -4.0
 // W64: encoding: [0x05,0x00,0x6d,0xd5,0x01,0x05,0xde,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_div_scale_f32 v5, s[0:1], v1, v2, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_div_fmas_f32 v5, v1, v2, v3
 // GFX10: encoding: [0x05,0x00,0x6f,0xd5,0x01,0x05,0x0e,0x04]
@@ -58623,763 +57966,611 @@ v_mqsad_u32_u8 v[252:255], v[1:2], -1, v[3:6]
 
 v_mad_u64_u32 v[5:6], s12, v1, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[254:255], s12, v1, v2, v[3:4]
 // W32: encoding: [0xfe,0x0c,0x76,0xd5,0x01,0x05,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[254:255], s12, v1, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s14, v1, v2, v[3:4]
 // W32: encoding: [0x05,0x0e,0x76,0xd5,0x01,0x05,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s14, v1, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s100, v1, v2, v[3:4]
 // W32: encoding: [0x05,0x64,0x76,0xd5,0x01,0x05,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s100, v1, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v255, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0xff,0x05,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v255, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, s1, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, s1, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, s101, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x65,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, s101, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, vcc_lo, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x6a,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, vcc_lo, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, vcc_hi, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x6b,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, vcc_hi, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, m0, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x7c,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, m0, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, exec_lo, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x7e,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, exec_lo, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, exec_hi, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x7f,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, exec_hi, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, 0, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x80,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, 0, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, -1, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0xc1,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, -1, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, 0.5, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0xf0,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, 0.5, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, -4.0, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0xf7,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, -4.0, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, v255, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xff,0x0f,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, v255, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, s2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, s2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, s101, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xcb,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, s101, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, vcc_lo, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xd5,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, vcc_lo, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, vcc_hi, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xd7,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, vcc_hi, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, m0, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xf9,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, m0, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, exec_lo, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xfd,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, exec_lo, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, exec_hi, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xff,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, exec_hi, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, 0, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x01,0x0d,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, 0, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, -1, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x83,0x0d,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, -1, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, 0.5, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xe1,0x0d,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, 0.5, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, -4.0, v[3:4]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xef,0x0d,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, -4.0, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, v2, v[254:255]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0xfa,0x07]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, v2, v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, v2, s[6:7]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, v2, s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, v2, s[8:9]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x22,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, v2, s[8:9]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, v2, s[100:101]
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x92,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, v2, s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, v2, vcc
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0xaa,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, v2, vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, v2, exec
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0xfa,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, v2, exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, v2, 0
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x02,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, v2, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, v2, -1
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, v2, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, v2, 0.5
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0xc2,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, v2, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s12, v1, v2, -4.0
 // W32: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0xde,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_u64_u32 v[5:6], s12, v1, v2, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[254:255], s[12:13], v1, v2, v[3:4]
 // W64: encoding: [0xfe,0x0c,0x76,0xd5,0x01,0x05,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[254:255], s[12:13], v1, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[14:15], v1, v2, v[3:4]
 // W64: encoding: [0x05,0x0e,0x76,0xd5,0x01,0x05,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[14:15], v1, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[100:101], v1, v2, v[3:4]
 // W64: encoding: [0x05,0x64,0x76,0xd5,0x01,0x05,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[100:101], v1, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v255, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0xff,0x05,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v255, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], s1, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], s1, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], s101, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x65,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], s101, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], vcc_lo, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x6a,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], vcc_lo, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], vcc_hi, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x6b,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], vcc_hi, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], m0, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x7c,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], m0, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], exec_lo, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x7e,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], exec_lo, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], exec_hi, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x7f,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], exec_hi, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], 0, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x80,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], 0, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], -1, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0xc1,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], -1, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], 0.5, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0xf0,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], 0.5, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], -4.0, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0xf7,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], -4.0, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, v255, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xff,0x0f,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, v255, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, s2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, s2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, s101, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xcb,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, s101, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, vcc_lo, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xd5,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, vcc_lo, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, vcc_hi, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xd7,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, vcc_hi, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, m0, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xf9,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, m0, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, exec_lo, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xfd,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, exec_lo, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, exec_hi, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xff,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, exec_hi, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, 0, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x01,0x0d,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, 0, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, -1, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x83,0x0d,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, -1, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, 0.5, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xe1,0x0d,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, 0.5, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, -4.0, v[3:4]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0xef,0x0d,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, -4.0, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, v2, v[254:255]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0xfa,0x07]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, v2, v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, v2, s[8:9]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x22,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, v2, s[8:9]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, v2, s[100:101]
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x92,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, v2, s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, v2, vcc
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0xaa,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, v2, exec
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0xfa,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, v2, exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, v2, 0
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x02,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, v2, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, v2, -1
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, v2, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, v2, 0.5
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0xc2,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, v2, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_u64_u32 v[5:6], s[12:13], v1, v2, -4.0
 // W64: encoding: [0x05,0x0c,0x76,0xd5,0x01,0x05,0xde,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_u64_u32 v[5:6], s[12:13], v1, v2, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[254:255], s12, v1, v2, v[3:4]
 // W32: encoding: [0xfe,0x0c,0x77,0xd5,0x01,0x05,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[254:255], s12, v1, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s14, v1, v2, v[3:4]
 // W32: encoding: [0x05,0x0e,0x77,0xd5,0x01,0x05,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s14, v1, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s100, v1, v2, v[3:4]
 // W32: encoding: [0x05,0x64,0x77,0xd5,0x01,0x05,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s100, v1, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v255, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0xff,0x05,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v255, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, s1, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, s1, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, s101, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x65,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, s101, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, vcc_lo, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x6a,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, vcc_lo, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, vcc_hi, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x6b,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, vcc_hi, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, m0, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x7c,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, m0, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, exec_lo, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x7e,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, exec_lo, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, exec_hi, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x7f,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, exec_hi, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, 0, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x80,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, 0, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, -1, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0xc1,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, -1, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, 0.5, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0xf0,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, 0.5, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, -4.0, v2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0xf7,0x04,0x0e,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, -4.0, v2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, v255, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xff,0x0f,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, v255, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, s2, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, s2, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, s101, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xcb,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, s101, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, vcc_lo, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xd5,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, vcc_lo, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, vcc_hi, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xd7,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, vcc_hi, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, m0, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xf9,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, m0, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, exec_lo, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xfd,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, exec_lo, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, exec_hi, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xff,0x0c,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, exec_hi, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, 0, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x01,0x0d,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, 0, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, -1, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x83,0x0d,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, -1, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, 0.5, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xe1,0x0d,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, 0.5, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, -4.0, v[3:4]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xef,0x0d,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, -4.0, v[3:4]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, v2, v[254:255]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0xfa,0x07]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, v2, v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, v2, s[6:7]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x1a,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, v2, s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, v2, s[8:9]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x22,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, v2, s[8:9]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, v2, s[100:101]
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x92,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, v2, s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, v2, vcc
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0xaa,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, v2, vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, v2, exec
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0xfa,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, v2, exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, v2, 0
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x02,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, v2, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, v2, -1
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, v2, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, v2, 0.5
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0xc2,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, v2, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s12, v1, v2, -4.0
 // W32: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0xde,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_mad_i64_i32 v[5:6], s12, v1, v2, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[254:255], s[12:13], v1, v2, v[3:4]
 // W64: encoding: [0xfe,0x0c,0x77,0xd5,0x01,0x05,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[254:255], s[12:13], v1, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[14:15], v1, v2, v[3:4]
 // W64: encoding: [0x05,0x0e,0x77,0xd5,0x01,0x05,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[14:15], v1, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[100:101], v1, v2, v[3:4]
 // W64: encoding: [0x05,0x64,0x77,0xd5,0x01,0x05,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[100:101], v1, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v255, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0xff,0x05,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v255, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], s1, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], s1, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], s101, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x65,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], s101, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], vcc_lo, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x6a,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], vcc_lo, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], vcc_hi, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x6b,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], vcc_hi, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], m0, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x7c,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], m0, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], exec_lo, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x7e,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], exec_lo, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], exec_hi, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x7f,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], exec_hi, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], 0, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x80,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], 0, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], -1, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0xc1,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], -1, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], 0.5, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0xf0,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], 0.5, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], -4.0, v2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0xf7,0x04,0x0e,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], -4.0, v2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, v255, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xff,0x0f,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, v255, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, s2, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, s2, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, s101, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xcb,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, s101, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, vcc_lo, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xd5,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, vcc_lo, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, vcc_hi, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xd7,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, vcc_hi, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, m0, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xf9,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, m0, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, exec_lo, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xfd,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, exec_lo, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, exec_hi, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xff,0x0c,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, exec_hi, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, 0, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x01,0x0d,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, 0, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, -1, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x83,0x0d,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, -1, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, 0.5, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xe1,0x0d,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, 0.5, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, -4.0, v[3:4]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0xef,0x0d,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, -4.0, v[3:4]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, v2, v[254:255]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0xfa,0x07]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, v2, v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, v2, s[6:7]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x1a,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, v2, s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, v2, s[8:9]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x22,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, v2, s[8:9]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, v2, s[100:101]
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x92,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, v2, s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, v2, vcc
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0xaa,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, v2, vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, v2, exec
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0xfa,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, v2, exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, v2, 0
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x02,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, v2, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, v2, -1
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, v2, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, v2, 0.5
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0xc2,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, v2, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_mad_i64_i32 v[5:6], s[12:13], v1, v2, -4.0
 // W64: encoding: [0x05,0x0c,0x77,0xd5,0x01,0x05,0xde,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_mad_i64_i32 v[5:6], s[12:13], v1, v2, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_xor3_b32 v5, v1, v2, v3
 // GFX10: encoding: [0x05,0x00,0x78,0xd5,0x01,0x05,0x0e,0x04]
@@ -63697,24 +62888,19 @@ v_sub_nc_i32 v5, v1, -4.0
 // GFX10: encoding: [0x05,0x00,0x76,0xd7,0x01,0xef,0x01,0x00]
 
 v_permlane16_b32 v5, v1, v2, v3
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_permlane16_b32 v5, v1, v2, v3
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_permlane16_b32 v5, v1, v2, s3
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_permlane16_b32 v5, v1, v2, s3
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_permlane16_b32 v5, v1, s2, v3
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_permlane16_b32 v5, v1, s2, v3
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_permlane16_b32 v5, s1, s2, s3
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_permlane16_b32 v5, s1, s2, s3
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_permlane16_b32 v5, 0, s2, s3
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_permlane16_b32 v5, 0, s2, s3
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_permlane16_b32 v5, v1, s2, s3
 // GFX10: encoding: [0x05,0x00,0x77,0xd7,0x01,0x05,0x0c,0x00]
@@ -63822,32 +63008,25 @@ v_permlane16_b32 v5, v1, s2, s3 op_sel:[0,1]
 // GFX10: encoding: [0x05,0x10,0x77,0xd7,0x01,0x05,0x0c,0x00]
 
 v_permlane16_b32 v5, v1, s2, s3 op_sel:[0, 0, 0, 1]
-// GFX10-ERR: error: invalid op_sel operand
-// GFX10-ERR-NEXT: v_permlane16_b32 v5, v1, s2, s3 op_sel:[0, 0, 0, 1]
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid op_sel operand
 
 v_permlane16_b32 v5, v1, s2, s3 op_sel:[0, 0, 1, 0]
-// GFX10-ERR: error: invalid op_sel operand
-// GFX10-ERR-NEXT: v_permlane16_b32 v5, v1, s2, s3 op_sel:[0, 0, 1, 0]
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid op_sel operand
 
 v_permlanex16_b32 v5, v1, v2, v3
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_permlanex16_b32 v5, v1, v2, v3
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_permlanex16_b32 v5, v1, v2, s3
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_permlanex16_b32 v5, v1, v2, s3
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_permlanex16_b32 v5, v1, s2, v3
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_permlanex16_b32 v5, v1, s2, v3
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_permlanex16_b32 v5, s1, s2, s3
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_permlanex16_b32 v5, s1, s2, s3
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_permlanex16_b32 v5, 0, s2, s3
-// GFX10-ERR: error: invalid operand for instruction
-// GFX10-ERR-NEXT: v_permlanex16_b32 v5, 0, s2, s3
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_permlanex16_b32 v5, v1, s2, s3
 // GFX10: encoding: [0x05,0x00,0x78,0xd7,0x01,0x05,0x0c,0x00]
@@ -63955,12 +63134,10 @@ v_permlanex16_b32 v5, v1, s2, s3 op_sel:[0,1]
 // GFX10: encoding: [0x05,0x10,0x78,0xd7,0x01,0x05,0x0c,0x00]
 
 v_permlanex16_b32 v5, v1, s2, s3 op_sel:[0, 0, 0, 1]
-// GFX10-ERR: error: invalid op_sel operand
-// GFX10-ERR-NEXT: v_permlanex16_b32 v5, v1, s2, s3 op_sel:[0, 0, 0, 1]
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid op_sel operand
 
 v_permlanex16_b32 v5, v1, s2, s3 op_sel:[0, 0, 1, 0]
-// GFX10-ERR: error: invalid op_sel operand
-// GFX10-ERR-NEXT: v_permlanex16_b32 v5, v1, s2, s3 op_sel:[0, 0, 1, 0]
+// GFX10-ERR: :[[@LINE-1]]:{{[0-9]+}}: error: invalid op_sel operand
 
 v_add_nc_i32 v5, v1, v2
 // GFX10: encoding: [0x05,0x00,0x7f,0xd7,0x01,0x05,0x02,0x00]
@@ -64100,12323 +63277,9859 @@ v_pk_fmac_f16 v5, v1, v255
 
 v_cmp_f_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x00,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x00,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x00,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x00,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x00,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x00,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x00,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x00,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x00,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x00,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x00,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x00,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x00,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x00,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x00,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x01,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x00,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x00,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x00,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x00,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x01,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x00,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x00,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x00,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x00,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x00,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x00,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x00,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x00,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x00,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x00,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x00,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x00,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x00,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x00,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x00,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x01,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x00,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x00,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x00,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x00,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x00,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x01,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x02,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x02,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x02,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x02,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x02,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x02,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x02,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x02,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x02,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x02,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x02,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x02,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x02,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x02,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x02,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x03,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x01,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x01,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x01,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x01,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x03,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x02,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x02,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x02,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x02,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x02,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x02,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x02,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x02,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x02,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x02,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x02,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x02,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x02,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x02,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x02,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x03,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x01,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x01,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x01,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x01,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x01,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x03,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x04,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x04,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x04,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x04,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x04,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x04,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x04,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x04,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x04,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x04,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x04,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x04,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x04,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x04,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x04,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x05,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x02,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x02,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x02,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x02,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x05,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x04,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x04,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x04,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x04,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x04,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x04,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x04,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x04,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x04,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x04,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x04,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x04,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x04,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x04,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x04,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x05,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x02,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x02,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x02,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x02,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x02,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x05,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x06,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x06,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x06,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x06,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x06,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x06,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x06,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x06,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x06,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x06,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x06,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x06,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x06,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x06,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x06,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x07,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x03,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x03,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x03,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x03,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x07,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x06,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x06,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x06,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x06,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x06,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x06,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x06,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x06,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x06,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x06,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x06,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x06,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x06,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x06,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x06,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x07,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x03,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x03,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x03,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x03,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x03,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x07,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x08,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x08,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x08,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x08,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x08,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x08,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x08,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x08,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x08,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x08,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x08,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x08,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x08,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x08,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x08,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x09,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x04,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x04,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x04,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x04,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x09,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x08,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x08,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x08,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x08,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x08,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x08,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x08,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x08,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x08,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x08,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x08,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x08,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x08,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x08,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x08,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x09,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x04,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x04,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x04,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x04,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x04,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x09,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x0a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x0a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x0a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x0a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x0a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x0a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x0a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x0a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x0a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x0a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x0a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x0a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x0a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x0a,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x0a,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x0b,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x05,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x05,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x05,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x05,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x0b,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x0a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x0a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x0a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x0a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x0a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x0a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x0a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x0a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x0a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x0a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x0a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x0a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x0a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x0a,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x0a,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x0b,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x05,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x05,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x05,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x05,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x05,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x0b,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x0c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x0c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x0c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x0c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x0c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x0c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x0c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x0c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x0c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x0c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x0c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x0c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x0c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x0c,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x0c,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x0d,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x06,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x06,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x06,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x06,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x0d,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x0c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x0c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x0c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x0c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x0c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x0c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x0c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x0c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x0c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x0c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x0c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x0c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x0c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x0c,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x0c,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x0d,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x06,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x06,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x06,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x06,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x06,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x0d,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x0e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x0e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x0e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x0e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x0e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x0e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x0e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x0e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x0e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x0e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x0e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x0e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x0e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x0e,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x0e,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x0f,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x07,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x07,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x07,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x07,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x0f,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x0e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x0e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x0e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x0e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x0e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x0e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x0e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x0e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x0e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x0e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x0e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x0e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x0e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x0e,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x0e,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x0f,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x07,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x07,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x07,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x07,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x07,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x0f,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x10,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x10,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x10,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x10,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x10,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x10,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x10,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x10,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x10,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x10,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x10,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x10,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x10,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x10,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x10,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x11,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x08,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x08,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x08,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x08,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x11,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x10,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x10,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x10,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x10,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x10,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x10,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x10,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x10,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x10,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x10,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x10,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x10,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x10,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x10,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x10,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x11,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x08,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x08,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x08,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x08,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x08,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x11,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x12,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x12,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x12,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x12,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x12,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x12,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x12,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x12,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x12,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x12,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x12,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x12,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x12,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x12,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x12,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x13,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x09,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x09,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x09,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x09,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x13,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x12,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x12,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x12,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x12,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x12,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x12,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x12,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x12,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x12,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x12,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x12,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x12,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x12,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x12,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x12,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x13,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x09,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x09,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x09,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x09,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x09,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x13,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x14,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x14,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x14,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x14,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x14,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x14,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x14,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x14,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x14,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x14,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x14,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x14,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x14,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x14,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x14,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x15,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x0a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x0a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x0a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x0a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x15,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x14,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x14,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x14,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x14,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x14,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x14,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x14,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x14,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x14,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x14,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x14,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x14,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x14,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x14,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x14,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x15,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x0a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x0a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x0a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x0a,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x0a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x15,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x16,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x16,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x16,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x16,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x16,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x16,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x16,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x16,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x16,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x16,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x16,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x16,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x16,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x16,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x16,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x17,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x0b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x0b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x0b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x0b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x17,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x16,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x16,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x16,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x16,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x16,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x16,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x16,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x16,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x16,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x16,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x16,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x16,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x16,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x16,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x16,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x17,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x0b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x0b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x0b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x0b,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x0b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x17,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x18,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x18,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x18,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x18,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x18,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x18,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x18,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x18,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x18,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x18,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x18,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x18,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x18,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x18,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x18,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x19,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x0c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x0c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x0c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x0c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x19,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x18,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x18,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x18,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x18,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x18,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x18,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x18,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x18,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x18,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x18,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x18,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x18,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x18,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x18,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x18,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x19,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x0c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x0c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x0c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x0c,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x0c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x19,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x1a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x1a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x1a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x1a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x1a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x1a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x1a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x1a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x1a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x1a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x1a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x1a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x1a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x1a,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x1a,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x1b,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x0d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x0d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x0d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x0d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x1b,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x1a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x1a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x1a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x1a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x1a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x1a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x1a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x1a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x1a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x1a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x1a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x1a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x1a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x1a,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x1a,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x1b,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x0d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x0d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x0d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x0d,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x0d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x1b,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x1c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x1c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x1c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x1c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x1c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x1c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x1c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x1c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x1c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x1c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x1c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x1c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x1c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x1c,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x1c,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x1d,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x0e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x0e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x0e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x0e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x1d,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x1c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x1c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x1c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x1c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x1c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x1c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x1c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x1c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x1c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x1c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x1c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x1c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x1c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x1c,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x1c,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x1d,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x0e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x0e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x0e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x0e,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x0e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x1d,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x1e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x1e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x1e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x1e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x1e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x1e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x1e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x1e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x1e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x1e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x1e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x1e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x1e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x1e,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x1e,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x1f,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x0f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x0f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x0f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0x0f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x1f,0x7c,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x16]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x26]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f32_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x1e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x1e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x1e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x1e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x1e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x1e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x1e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x1e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x1e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x1e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x1e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x1e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x1e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x1e,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x1e,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x1f,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x0f,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x0f,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x0f,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0x0f,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0x0f,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x1f,0x7c,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x16]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1e,0x7c,0x01,0x86,0x06,0x26]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f32_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmpx_f_f32 v1, v2
 // GFX10: encoding: [0x01,0x05,0x20,0x7c]
@@ -79780,6723 +76493,5379 @@ v_cmpx_tru_f32_sdwa v1, |v2| src0_sel:DWORD src1_sel:DWORD
 
 v_cmp_f_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x40,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x40,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x40,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x40,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x40,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x40,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x40,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x40,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x40,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x40,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x40,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x40,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x40,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x41,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x20,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x20,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x20,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x20,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x40,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x40,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x40,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x40,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x40,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x40,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x40,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x40,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x40,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x40,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x40,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x40,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x40,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x41,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x20,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x20,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x20,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x20,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x20,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x42,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x42,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x42,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x42,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x42,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x42,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x42,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x42,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x42,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x42,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x42,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x42,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x42,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x43,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x21,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x21,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x21,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x21,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x42,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x42,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x42,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x42,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x42,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x42,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x42,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x42,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x42,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x42,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x42,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x42,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x42,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x43,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x21,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x21,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x21,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x21,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x21,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x44,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x44,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x44,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x44,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x44,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x44,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x44,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x44,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x44,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x44,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x44,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x44,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x44,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x45,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x22,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x22,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x22,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x22,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x44,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x44,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x44,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x44,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x44,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x44,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x44,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x44,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x44,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x44,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x44,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x44,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x44,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x45,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x22,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x22,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x22,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x22,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x22,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x46,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x46,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x46,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x46,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x46,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x46,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x46,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x46,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x46,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x46,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x46,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x46,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x46,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x47,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x23,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x23,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x23,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x23,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x46,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x46,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x46,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x46,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x46,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x46,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x46,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x46,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x46,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x46,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x46,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x46,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x46,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x47,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x23,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x23,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x23,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x23,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x23,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x48,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x48,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x48,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x48,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x48,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x48,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x48,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x48,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x48,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x48,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x48,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x48,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x48,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x49,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x24,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x24,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x24,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x24,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x48,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x48,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x48,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x48,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x48,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x48,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x48,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x48,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x48,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x48,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x48,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x48,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x48,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x49,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x24,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x24,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x24,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x24,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x24,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x4a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x4a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x4a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x4a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x4a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x4a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x4a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x4a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x4a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x4a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x4a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x4a,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x4a,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x4b,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lg_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x25,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x25,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x25,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x25,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lg_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x4a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x4a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x4a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x4a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x4a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x4a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x4a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x4a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x4a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x4a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x4a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x4a,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x4a,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x4b,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lg_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lg_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x25,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x25,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x25,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x25,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lg_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x25,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lg_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x4c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x4c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x4c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x4c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x4c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x4c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x4c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x4c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x4c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x4c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x4c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x4c,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x4c,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x4d,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x26,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x26,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x26,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x26,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x4c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x4c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x4c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x4c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x4c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x4c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x4c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x4c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x4c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x4c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x4c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x4c,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x4c,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x4d,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x26,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x26,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x26,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x26,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x26,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x4e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x4e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x4e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x4e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x4e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x4e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x4e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x4e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x4e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x4e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x4e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x4e,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x4e,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x4f,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_o_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x27,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x27,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x27,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x27,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_o_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x4e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x4e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x4e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x4e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x4e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x4e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x4e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x4e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x4e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x4e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x4e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x4e,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x4e,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x4f,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_o_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_o_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x27,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x27,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x27,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x27,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_o_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x27,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_o_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x50,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x50,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x50,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x50,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x50,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x50,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x50,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x50,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x50,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x50,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x50,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x50,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x50,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x51,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_u_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x28,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x28,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x28,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x28,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_u_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x50,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x50,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x50,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x50,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x50,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x50,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x50,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x50,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x50,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x50,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x50,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x50,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x50,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x51,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_u_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_u_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x28,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x28,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x28,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x28,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_u_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x28,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_u_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x52,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x52,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x52,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x52,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x52,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x52,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x52,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x52,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x52,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x52,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x52,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x52,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x52,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x53,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nge_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x29,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x29,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x29,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x29,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nge_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x52,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x52,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x52,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x52,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x52,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x52,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x52,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x52,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x52,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x52,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x52,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x52,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x52,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x53,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nge_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nge_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x29,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x29,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x29,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x29,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nge_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x29,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nge_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x54,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x54,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x54,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x54,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x54,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x54,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x54,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x54,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x54,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x54,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x54,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x54,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x54,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x55,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlg_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x2a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x2a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x2a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x2a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlg_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x54,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x54,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x54,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x54,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x54,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x54,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x54,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x54,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x54,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x54,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x54,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x54,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x54,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x55,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlg_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlg_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x2a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x2a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x2a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x2a,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlg_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x2a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlg_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x56,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x56,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x56,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x56,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x56,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x56,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x56,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x56,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x56,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x56,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x56,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x56,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x56,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x57,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ngt_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x2b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x2b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x2b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x2b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ngt_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x56,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x56,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x56,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x56,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x56,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x56,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x56,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x56,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x56,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x56,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x56,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x56,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x56,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x57,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ngt_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ngt_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x2b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x2b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x2b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x2b,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ngt_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x2b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ngt_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x58,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x58,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x58,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x58,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x58,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x58,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x58,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x58,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x58,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x58,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x58,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x58,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x58,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x59,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nle_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x2c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x2c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x2c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x2c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nle_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x58,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x58,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x58,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x58,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x58,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x58,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x58,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x58,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x58,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x58,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x58,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x58,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x58,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x59,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nle_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nle_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x2c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x2c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x2c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x2c,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nle_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x2c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nle_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x5a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x5a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x5a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x5a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x5a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x5a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x5a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x5a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x5a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x5a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x5a,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x5a,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x5a,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x5b,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_neq_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x2d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x2d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x2d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x2d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_neq_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x5a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x5a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x5a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x5a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x5a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x5a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x5a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x5a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x5a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x5a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x5a,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x5a,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x5a,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x5b,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_neq_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_neq_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x2d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x2d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x2d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x2d,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_neq_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x2d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_neq_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x5c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x5c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x5c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x5c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x5c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x5c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x5c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x5c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x5c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x5c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x5c,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x5c,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x5c,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x5d,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_nlt_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x2e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x2e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x2e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x2e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_nlt_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x5c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x5c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x5c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x5c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x5c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x5c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x5c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x5c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x5c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x5c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x5c,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x5c,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x5c,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x5d,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_nlt_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_nlt_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x2e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x2e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x2e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x2e,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_nlt_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x2e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_nlt_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x5e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x5e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x5e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x5e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x5e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x5e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x5e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x5e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x5e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x5e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x5e,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x5e,0x7c,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x5e,0x7c,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x5f,0x7c]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_tru_f64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0x2f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0x2f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0x2f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], -v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], -v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], -v[1:2], -v[2:3]
 // W64: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], -v[1:2], -v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s[10:11], v[1:2], v[2:3] clamp
 // W64: encoding: [0x0a,0x80,0x2f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_tru_f64_e64 s[10:11], v[1:2], v[2:3] clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x5e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x5e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x5e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x5e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x5e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x5e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x5e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x5e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x5e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x5e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x5e,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x5e,0x7c,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x5e,0x7c,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x5f,0x7c]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_tru_f64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_tru_f64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0x2f,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0x2f,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0x2f,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, -v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, -v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, -v[1:2], -v[2:3]
 // W32: encoding: [0x0a,0x00,0x2f,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, -v[1:2], -v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_tru_f64_e64 s10, v[1:2], v[2:3] clamp
 // W32: encoding: [0x0a,0x80,0x2f,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_tru_f64_e64 s10, v[1:2], v[2:3] clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmpx_f_f64 v[1:2], v[2:3]
 // GFX10: encoding: [0x01,0x05,0x60,0x7c]
@@ -88321,11038 +83690,8831 @@ v_cmpx_tru_f64_e64 -v[1:2], -v[2:3]
 
 v_cmp_f_i32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x00,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x00,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x00,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x00,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x00,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x00,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x00,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x00,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x00,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x00,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x00,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x00,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x00,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x00,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x00,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x01,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x80,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x80,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x80,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x02,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x02,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x02,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x02,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x02,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x02,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x02,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x02,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x02,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x02,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x02,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x02,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x02,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x02,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x02,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x03,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x81,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x81,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x81,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x04,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x04,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x04,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x04,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x04,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x04,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x04,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x04,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x04,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x04,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x04,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x04,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x04,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x04,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x04,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x05,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x82,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x82,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x82,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x06,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x06,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x06,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x06,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x06,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x06,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x06,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x06,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x06,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x06,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x06,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x06,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x06,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x06,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x06,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x07,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x83,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x83,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x83,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x08,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x08,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x08,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x08,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x08,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x08,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x08,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x08,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x08,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x08,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x08,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x08,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x08,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x08,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x08,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x09,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x84,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x84,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x84,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x0a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x0a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x0a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x0a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x0a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x0a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x0a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x0a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x0a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x0a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x0a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x0a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x0a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x0a,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x0a,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x0b,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x85,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x85,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x85,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x0c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x0c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x0c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x0c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x0c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x0c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x0c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x0c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x0c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x0c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x0c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x0c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x0c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x0c,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x0c,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x0d,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x86,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x86,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x86,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x0e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x0e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x0e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x0e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x0e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x0e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x0e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x0e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x0e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x0e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x0e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x0e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x0e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x0e,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x0e,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x0f,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x87,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x87,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x87,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x01,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x03,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x05,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x07,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x09,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x0b,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x0d,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x0f,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x00,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x00,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x00,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x00,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x00,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x00,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x00,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x00,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x00,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x00,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x00,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x00,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x00,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x00,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x00,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x01,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x80,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x80,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x80,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x80,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x02,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x02,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x02,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x02,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x02,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x02,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x02,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x02,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x02,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x02,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x02,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x02,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x02,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x02,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x02,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x03,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x81,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x81,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x81,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x81,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x04,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x04,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x04,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x04,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x04,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x04,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x04,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x04,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x04,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x04,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x04,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x04,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x04,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x04,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x04,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x05,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x82,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x82,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x82,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x82,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x06,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x06,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x06,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x06,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x06,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x06,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x06,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x06,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x06,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x06,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x06,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x06,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x06,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x06,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x06,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x07,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x83,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x83,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x83,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x83,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x08,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x08,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x08,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x08,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x08,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x08,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x08,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x08,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x08,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x08,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x08,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x08,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x08,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x08,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x08,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x09,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x84,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x84,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x84,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x84,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x0a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x0a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x0a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x0a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x0a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x0a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x0a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x0a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x0a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x0a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x0a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x0a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x0a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x0a,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x0a,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x0b,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x85,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x85,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x85,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x85,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x0c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x0c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x0c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x0c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x0c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x0c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x0c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x0c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x0c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x0c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x0c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x0c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x0c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x0c,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x0c,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x0d,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x86,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x86,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x86,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x86,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x0e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x0e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x0e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x0e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x0e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x0e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x0e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x0e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x0e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x0e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x0e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x0e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x0e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x0e,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x0e,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x0f,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x87,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x87,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x87,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x87,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x01,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x00,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x03,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x02,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x05,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x04,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x07,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x06,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x09,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x08,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x0b,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0a,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x0d,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0c,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x0f,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x0e,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x10,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x10,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x10,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x10,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x10,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x10,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x10,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x10,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x10,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x10,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x10,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x10,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x10,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x10,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x10,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x11,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x88,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x88,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x88,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x11,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x10,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x10,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x10,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x10,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x10,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x10,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x10,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x10,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x10,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x10,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x10,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x10,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x10,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x10,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x10,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x11,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x88,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x88,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x88,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0x88,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x11,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x10,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x12,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x12,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x12,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x12,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x12,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x12,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x12,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x12,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x12,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x12,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x12,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x12,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x12,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x12,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x12,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x13,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x89,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x89,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x89,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x14,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x14,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x14,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x14,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x14,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x14,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x14,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x14,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x14,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x14,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x14,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x14,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x14,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x14,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x14,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x15,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x8a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x8a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x8a,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x16,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x16,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x16,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x16,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x16,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x16,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x16,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x16,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x16,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x16,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x16,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x16,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x16,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x16,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x16,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x17,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x8b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x8b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x8b,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x18,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x18,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x18,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x18,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x18,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x18,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x18,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x18,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x18,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x18,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x18,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x18,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x18,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x18,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x18,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x19,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x8c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x8c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x8c,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x1a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x1a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x1a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x1a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x1a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x1a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x1a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x1a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x1a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x1a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x1a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x1a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x1a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x1a,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x1a,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x1b,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x8d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x8d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x8d,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x1c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x1c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x1c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x1c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x1c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x1c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x1c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x1c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x1c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x1c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x1c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x1c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x1c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x1c,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x1c,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x1d,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x8e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x8e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x8e,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x13,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x15,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x17,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x19,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x1b,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x1d,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x12,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x12,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x12,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x12,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x12,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x12,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x12,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x12,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x12,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x12,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x12,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x12,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x12,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x12,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x12,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x13,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x89,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x89,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x89,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x89,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x14,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x14,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x14,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x14,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x14,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x14,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x14,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x14,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x14,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x14,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x14,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x14,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x14,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x14,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x14,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x15,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x8a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x8a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x8a,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x8a,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x16,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x16,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x16,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x16,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x16,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x16,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x16,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x16,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x16,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x16,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x16,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x16,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x16,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x16,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x16,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x17,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x8b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x8b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x8b,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x8b,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x18,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x18,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x18,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x18,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x18,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x18,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x18,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x18,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x18,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x18,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x18,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x18,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x18,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x18,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x18,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x19,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x8c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x8c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x8c,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x8c,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x1a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x1a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x1a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x1a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x1a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x1a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x1a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x1a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x1a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x1a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x1a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x1a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x1a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x1a,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x1a,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x1b,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x8d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x8d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x8d,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x8d,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x1c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x1c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x1c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x1c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x1c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x1c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x1c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x1c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x1c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x1c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x1c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x1c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x1c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x1c,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x1c,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x1d,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0x8e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0x8e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0x8e,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0x8e,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x13,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x12,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x15,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x14,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x17,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x16,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x19,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x18,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x1b,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1a,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x1d,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x1c,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x1e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x1e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x1e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x1e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x1e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x1e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x1e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x1e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x1e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x1e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x1e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x1e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x1e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x1e,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x1e,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x1f,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0x8f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0x8f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0x8f,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0x8f,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_class_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x1f,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x1e,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmpx_f_i32 v1, v2
 // GFX10: encoding: [0x01,0x05,0x20,0x7d]
@@ -110120,6493 +103282,5195 @@ v_cmpx_tru_f16_sdwa v1, |v2| src0_sel:DWORD src1_sel:DWORD
 
 v_cmp_f_i64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x40,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x40,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x40,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x40,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x40,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x40,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x40,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x40,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x40,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x40,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x40,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x40,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x40,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x41,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_i64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xa0,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xa0,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xa0,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_i64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x42,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x42,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x42,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x42,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x42,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x42,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x42,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x42,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x42,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x42,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x42,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x42,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x42,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x43,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_i64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xa1,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xa1,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xa1,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_i64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x44,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x44,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x44,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x44,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x44,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x44,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x44,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x44,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x44,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x44,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x44,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x44,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x44,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x45,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_i64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xa2,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xa2,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xa2,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_i64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x46,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x46,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x46,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x46,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x46,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x46,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x46,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x46,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x46,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x46,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x46,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x46,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x46,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x47,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_i64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xa3,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xa3,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xa3,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_i64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x48,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x48,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x48,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x48,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x48,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x48,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x48,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x48,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x48,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x48,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x48,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x48,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x48,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x49,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_i64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xa4,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xa4,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xa4,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_i64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x4a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x4a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x4a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x4a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x4a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x4a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x4a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x4a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x4a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x4a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x4a,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x4a,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x4a,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x4b,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_i64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xa5,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xa5,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xa5,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_i64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x4c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x4c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x4c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x4c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x4c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x4c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x4c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x4c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x4c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x4c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x4c,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x4c,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x4c,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x4d,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_i64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xa6,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xa6,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xa6,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_i64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0x4e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0x4e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0x4e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0x4e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0x4e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0x4e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0x4e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0x4e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0x4e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0x4e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0x4e,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0x4e,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0x4e,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0x4f,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_i64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xa7,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xa7,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xa7,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_i64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64 vcc, v[1:2], v2
 // W64: encoding: [0x01,0x05,0x50,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, v[1:2], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc, v[254:255], v2
 // W64: encoding: [0xfe,0x05,0x50,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, v[254:255], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc, s[2:3], v2
 // W64: encoding: [0x02,0x04,0x50,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, s[2:3], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc, s[4:5], v2
 // W64: encoding: [0x04,0x04,0x50,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, s[4:5], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc, s[100:101], v2
 // W64: encoding: [0x64,0x04,0x50,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, s[100:101], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc, vcc, v2
 // W64: encoding: [0x6a,0x04,0x50,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, vcc, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc, exec, v2
 // W64: encoding: [0x7e,0x04,0x50,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, exec, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x50,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x50,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x50,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x50,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x50,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x50,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc, v[1:2], v255
 // W64: encoding: [0x01,0xff,0x51,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_class_f64 vcc, v[1:2], v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64_e64 s[10:11], v[1:2], v2
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[1:2], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[12:13], v[1:2], v2
 // W64: encoding: [0x0c,0x00,0xa8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[12:13], v[1:2], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[100:101], v[1:2], v2
 // W64: encoding: [0x64,0x00,0xa8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[100:101], v[1:2], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 vcc, v[1:2], v2
 // W64: encoding: [0x6a,0x00,0xa8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 vcc, v[1:2], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], v[254:255], v2
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[254:255], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], s[2:3], v2
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], s[2:3], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], s[4:5], v2
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], s[4:5], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], s[100:101], v2
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], s[100:101], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], vcc, v2
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], vcc, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], exec, v2
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], exec, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], v[1:2], v255
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[1:2], v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], v[1:2], s2
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[1:2], s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], v[1:2], s101
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[1:2], s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], v[1:2], vcc_lo
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[1:2], vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], v[1:2], vcc_hi
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[1:2], vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], v[1:2], m0
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[1:2], m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], v[1:2], exec_lo
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[1:2], exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], v[1:2], exec_hi
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[1:2], exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s[10:11], -v[1:2], v2
 // W64: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_class_f64_e64 s[10:11], -v[1:2], v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0xc0,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0xc0,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0xc0,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0xc0,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0xc0,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0xc0,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0xc0,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0xc0,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0xc0,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0xc0,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0xc0,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0xc0,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0xc0,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0xc1,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_f_u64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xe0,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xe0,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xe0,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_f_u64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0xc2,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0xc2,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0xc2,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0xc2,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0xc2,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0xc2,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0xc2,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0xc2,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0xc2,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0xc2,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0xc2,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0xc2,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0xc2,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0xc3,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_lt_u64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xe1,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xe1,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xe1,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_lt_u64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0xc4,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0xc4,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0xc4,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0xc4,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0xc4,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0xc4,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0xc4,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0xc4,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0xc4,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0xc4,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0xc4,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0xc4,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0xc4,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0xc5,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_eq_u64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xe2,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xe2,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xe2,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_eq_u64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0xc6,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0xc6,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0xc6,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0xc6,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0xc6,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0xc6,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0xc6,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0xc6,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0xc6,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0xc6,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0xc6,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0xc6,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0xc6,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0xc7,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_le_u64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xe3,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xe3,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xe3,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_le_u64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0xc8,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0xc8,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0xc8,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0xc8,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0xc8,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0xc8,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0xc8,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0xc8,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0xc8,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0xc8,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0xc8,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0xc8,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0xc8,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0xc9,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_gt_u64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xe4,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xe4,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xe4,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_gt_u64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0xca,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0xca,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0xca,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0xca,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0xca,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0xca,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0xca,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0xca,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0xca,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0xca,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0xca,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0xca,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0xca,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0xcb,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ne_u64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xe5,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xe5,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xe5,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ne_u64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0xcc,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0xcc,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0xcc,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0xcc,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0xcc,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0xcc,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0xcc,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0xcc,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0xcc,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0xcc,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0xcc,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0xcc,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0xcc,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0xcd,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_ge_u64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xe6,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xe6,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xe6,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_ge_u64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x01,0x05,0xce,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc, v[254:255], v[2:3]
 // W64: encoding: [0xfe,0x05,0xce,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc, s[2:3], v[2:3]
 // W64: encoding: [0x02,0x04,0xce,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc, s[4:5], v[2:3]
 // W64: encoding: [0x04,0x04,0xce,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc, s[100:101], v[2:3]
 // W64: encoding: [0x64,0x04,0xce,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc, vcc, v[2:3]
 // W64: encoding: [0x6a,0x04,0xce,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc, exec, v[2:3]
 // W64: encoding: [0x7e,0x04,0xce,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc, 0, v[2:3]
 // W64: encoding: [0x80,0x04,0xce,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc, -1, v[2:3]
 // W64: encoding: [0xc1,0x04,0xce,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc, 0.5, v[2:3]
 // W64: encoding: [0xf0,0x04,0xce,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc, -4.0, v[2:3]
 // W64: encoding: [0xf7,0x04,0xce,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc, 0xaf123456, v[2:3]
 // W64: encoding: [0xff,0x04,0xce,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, 0xaf123456, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc, 0x3f717273, v[2:3]
 // W64: encoding: [0xff,0x04,0xce,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, 0x3f717273, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc, v[1:2], v[254:255]
 // W64: encoding: [0x01,0xfd,0xcf,0x7d]
-// W32-ERR: error: instruction not supported on this GPU
-// W32-ERR-NEXT: v_cmp_t_u64 vcc, v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64_e64 s[10:11], v[1:2], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[12:13], v[1:2], v[2:3]
 // W64: encoding: [0x0c,0x00,0xe7,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[12:13], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[100:101], v[1:2], v[2:3]
 // W64: encoding: [0x64,0x00,0xe7,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[100:101], v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 vcc, v[1:2], v[2:3]
 // W64: encoding: [0x6a,0x00,0xe7,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 vcc, v[1:2], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], v[254:255], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0xfe,0x05,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], v[254:255], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], s[2:3], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x02,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], s[2:3], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], s[4:5], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x04,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], s[4:5], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], s[100:101], v[2:3]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x64,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], s[100:101], v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], vcc, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], vcc, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], exec, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], exec, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], 0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], 0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], -1, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], -1, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], 0.5, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], 0.5, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], -4.0, v[2:3]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], -4.0, v[2:3]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], v[1:2], v[254:255]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0xfd,0x03,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], v[1:2], v[254:255]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], v[1:2], s[4:5]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0x09,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], v[1:2], s[4:5]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], v[1:2], s[6:7]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0x0d,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], v[1:2], s[6:7]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], v[1:2], s[100:101]
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0xc9,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], v[1:2], s[100:101]
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], v[1:2], vcc
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], v[1:2], vcc
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], v[1:2], exec
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], v[1:2], exec
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], v[1:2], 0
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], v[1:2], 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], v[1:2], -1
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], v[1:2], -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], v[1:2], 0.5
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], v[1:2], 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s[10:11], v[1:2], -4.0
 // W64: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: invalid operand for instruction
-// W32-ERR-NEXT: v_cmp_t_u64_e64 s[10:11], v[1:2], -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x40,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x40,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x40,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x40,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x40,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x40,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x40,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x40,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x40,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x40,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x40,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x40,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x40,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x41,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_i64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_i64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xa0,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xa0,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xa0,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_i64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xa0,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_i64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x42,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x42,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x42,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x42,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x42,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x42,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x42,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x42,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x42,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x42,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x42,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x42,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x42,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x43,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_i64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_i64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xa1,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xa1,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xa1,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_i64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xa1,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_i64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x44,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x44,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x44,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x44,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x44,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x44,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x44,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x44,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x44,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x44,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x44,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x44,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x44,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x45,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_i64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_i64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xa2,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xa2,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xa2,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_i64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xa2,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_i64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x46,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x46,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x46,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x46,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x46,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x46,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x46,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x46,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x46,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x46,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x46,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x46,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x46,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x47,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_i64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_i64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xa3,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xa3,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xa3,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_i64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xa3,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_i64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x48,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x48,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x48,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x48,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x48,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x48,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x48,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x48,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x48,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x48,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x48,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x48,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x48,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x49,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_i64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_i64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xa4,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xa4,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xa4,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_i64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xa4,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_i64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x4a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x4a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x4a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x4a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x4a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x4a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x4a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x4a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x4a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x4a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x4a,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x4a,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x4a,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x4b,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_i64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_i64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xa5,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xa5,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xa5,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_i64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xa5,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_i64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x4c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x4c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x4c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x4c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x4c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x4c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x4c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x4c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x4c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x4c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x4c,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x4c,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x4c,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x4d,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_i64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_i64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xa6,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xa6,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xa6,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_i64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xa6,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_i64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0x4e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0x4e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0x4e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0x4e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0x4e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0x4e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0x4e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0x4e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0x4e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0x4e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0x4e,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0x4e,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0x4e,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0x4f,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_i64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_i64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xa7,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xa7,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xa7,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_i64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xa7,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_i64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64 vcc_lo, v[1:2], v2
 // W32: encoding: [0x01,0x05,0x50,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, v[1:2], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc_lo, v[254:255], v2
 // W32: encoding: [0xfe,0x05,0x50,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, v[254:255], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc_lo, s[2:3], v2
 // W32: encoding: [0x02,0x04,0x50,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, s[2:3], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc_lo, s[4:5], v2
 // W32: encoding: [0x04,0x04,0x50,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, s[4:5], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc_lo, s[100:101], v2
 // W32: encoding: [0x64,0x04,0x50,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, s[100:101], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc_lo, vcc, v2
 // W32: encoding: [0x6a,0x04,0x50,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, vcc, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc_lo, exec, v2
 // W32: encoding: [0x7e,0x04,0x50,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, exec, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x50,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x50,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x50,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x50,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x50,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x50,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64 vcc_lo, v[1:2], v255
 // W32: encoding: [0x01,0xff,0x51,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_class_f64 vcc_lo, v[1:2], v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_class_f64_e64 s10, v[1:2], v2
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[1:2], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s12, v[1:2], v2
 // W32: encoding: [0x0c,0x00,0xa8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s12, v[1:2], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s100, v[1:2], v2
 // W32: encoding: [0x64,0x00,0xa8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s100, v[1:2], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 vcc_lo, v[1:2], v2
 // W32: encoding: [0x6a,0x00,0xa8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 vcc_lo, v[1:2], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, v[254:255], v2
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[254:255], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, s[2:3], v2
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, s[2:3], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, s[4:5], v2
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, s[4:5], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, s[100:101], v2
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, s[100:101], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, vcc, v2
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, vcc, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, exec, v2
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, exec, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, v[1:2], v255
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[1:2], v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, v[1:2], s2
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[1:2], s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, v[1:2], s101
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[1:2], s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, v[1:2], vcc_lo
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[1:2], vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, v[1:2], vcc_hi
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[1:2], vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, v[1:2], m0
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[1:2], m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, v[1:2], exec_lo
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[1:2], exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, v[1:2], exec_hi
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[1:2], exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_class_f64_e64 s10, -v[1:2], v2
 // W32: encoding: [0x0a,0x00,0xa8,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_class_f64_e64 s10, -v[1:2], v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0xc0,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0xc0,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0xc0,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0xc0,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0xc0,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0xc0,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0xc0,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0xc0,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0xc0,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0xc0,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0xc0,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0xc0,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0xc0,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0xc1,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_f_u64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_f_u64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xe0,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xe0,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xe0,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_f_u64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xe0,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_f_u64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0xc2,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0xc2,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0xc2,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0xc2,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0xc2,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0xc2,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0xc2,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0xc2,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0xc2,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0xc2,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0xc2,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0xc2,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0xc2,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0xc3,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_lt_u64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_lt_u64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xe1,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xe1,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xe1,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_lt_u64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xe1,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_lt_u64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0xc4,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0xc4,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0xc4,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0xc4,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0xc4,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0xc4,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0xc4,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0xc4,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0xc4,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0xc4,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0xc4,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0xc4,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0xc4,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0xc5,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_eq_u64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_eq_u64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xe2,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xe2,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xe2,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_eq_u64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xe2,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_eq_u64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0xc6,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0xc6,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0xc6,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0xc6,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0xc6,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0xc6,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0xc6,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0xc6,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0xc6,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0xc6,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0xc6,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0xc6,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0xc6,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0xc7,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_le_u64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_le_u64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xe3,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xe3,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xe3,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_le_u64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xe3,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_le_u64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0xc8,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0xc8,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0xc8,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0xc8,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0xc8,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0xc8,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0xc8,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0xc8,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0xc8,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0xc8,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0xc8,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0xc8,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0xc8,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0xc9,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_gt_u64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_gt_u64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xe4,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xe4,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xe4,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_gt_u64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xe4,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_gt_u64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0xca,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0xca,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0xca,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0xca,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0xca,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0xca,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0xca,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0xca,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0xca,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0xca,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0xca,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0xca,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0xca,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0xcb,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ne_u64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ne_u64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xe5,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xe5,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xe5,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ne_u64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xe5,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ne_u64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0xcc,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0xcc,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0xcc,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0xcc,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0xcc,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0xcc,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0xcc,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0xcc,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0xcc,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0xcc,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0xcc,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0xcc,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0xcc,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0xcd,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_ge_u64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_ge_u64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xe6,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xe6,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xe6,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_ge_u64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xe6,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_ge_u64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x01,0x05,0xce,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc_lo, v[254:255], v[2:3]
 // W32: encoding: [0xfe,0x05,0xce,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc_lo, s[2:3], v[2:3]
 // W32: encoding: [0x02,0x04,0xce,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc_lo, s[4:5], v[2:3]
 // W32: encoding: [0x04,0x04,0xce,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc_lo, s[100:101], v[2:3]
 // W32: encoding: [0x64,0x04,0xce,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc_lo, vcc, v[2:3]
 // W32: encoding: [0x6a,0x04,0xce,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc_lo, exec, v[2:3]
 // W32: encoding: [0x7e,0x04,0xce,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc_lo, 0, v[2:3]
 // W32: encoding: [0x80,0x04,0xce,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc_lo, -1, v[2:3]
 // W32: encoding: [0xc1,0x04,0xce,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc_lo, 0.5, v[2:3]
 // W32: encoding: [0xf0,0x04,0xce,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc_lo, -4.0, v[2:3]
 // W32: encoding: [0xf7,0x04,0xce,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc_lo, 0xaf123456, v[2:3]
 // W32: encoding: [0xff,0x04,0xce,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, 0xaf123456, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc_lo, 0x3f717273, v[2:3]
 // W32: encoding: [0xff,0x04,0xce,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, 0x3f717273, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64 vcc_lo, v[1:2], v[254:255]
 // W32: encoding: [0x01,0xfd,0xcf,0x7d]
-// W64-ERR: error: instruction not supported on this GPU
-// W64-ERR-NEXT: v_cmp_t_u64 vcc_lo, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: instruction not supported on this GPU
 
 v_cmp_t_u64_e64 s10, v[1:2], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s12, v[1:2], v[2:3]
 // W32: encoding: [0x0c,0x00,0xe7,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s12, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s100, v[1:2], v[2:3]
 // W32: encoding: [0x64,0x00,0xe7,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s100, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 vcc_lo, v[1:2], v[2:3]
 // W32: encoding: [0x6a,0x00,0xe7,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 vcc_lo, v[1:2], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, v[254:255], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0xfe,0x05,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, v[254:255], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, s[2:3], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x02,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, s[2:3], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, s[4:5], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x04,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, s[4:5], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, s[100:101], v[2:3]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x64,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, s[100:101], v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, vcc, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, vcc, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, exec, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, exec, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, 0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, 0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, -1, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, -1, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, 0.5, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, 0.5, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, -4.0, v[2:3]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, -4.0, v[2:3]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, v[1:2], v[254:255]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0xfd,0x03,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, v[1:2], v[254:255]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, v[1:2], s[4:5]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0x09,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, v[1:2], s[4:5]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, v[1:2], s[6:7]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0x0d,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, v[1:2], s[6:7]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, v[1:2], s[100:101]
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0xc9,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, v[1:2], s[100:101]
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, v[1:2], vcc
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, v[1:2], vcc
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, v[1:2], exec
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, v[1:2], exec
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, v[1:2], 0
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, v[1:2], 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, v[1:2], -1
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, v[1:2], -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, v[1:2], 0.5
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, v[1:2], 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmp_t_u64_e64 s10, v[1:2], -4.0
 // W32: encoding: [0x0a,0x00,0xe7,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: invalid operand for instruction
-// W64-ERR-NEXT: v_cmp_t_u64_e64 s10, v[1:2], -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: invalid operand for instruction
 
 v_cmpx_f_u64_e64 exec, v[2:3]
 // GFX10: encoding: [0x00,0x00,0xf0,0xd4,0x7e,0x04,0x02,0x00]
@@ -116634,22263 +108498,17811 @@ v_cmpx_t_u64_e64 exec, v[2:3]
 
 v_cmp_lt_u16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x52,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x52,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x52,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x52,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x52,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x52,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x52,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x52,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x52,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x52,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x52,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x52,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x52,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x52,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x52,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x53,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xa9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xa9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xa9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x54,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x54,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x54,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x54,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x54,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x54,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x54,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x54,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x54,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x54,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x54,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x54,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x54,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x54,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x54,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x55,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xaa,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xaa,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xaa,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x56,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x56,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x56,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x56,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x56,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x56,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x56,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x56,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x56,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x56,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x56,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x56,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x56,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x56,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x56,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x57,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xab,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xab,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xab,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x58,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x58,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x58,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x58,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x58,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x58,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x58,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x58,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x58,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x58,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x58,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x58,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x58,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x58,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x58,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x59,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xac,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xac,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xac,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x5a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x5a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x5a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x5a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x5a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x5a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x5a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x5a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x5a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x5a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x5a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x5a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x5a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x5a,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x5a,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x5b,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xad,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xad,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xad,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x5c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x5c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x5c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x5c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x5c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x5c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x5c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x5c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x5c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x5c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x5c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x5c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x5c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x5c,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x5c,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x5d,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xae,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xae,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xae,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x80,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x80,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x80,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x80,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x80,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x80,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x80,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x80,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x80,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x80,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x80,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x80,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x80,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x80,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x80,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x81,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xc0,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xc0,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xc0,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x82,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x82,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x82,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x82,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x82,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x82,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x82,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x82,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x82,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x82,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x82,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x82,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x82,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x82,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x82,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x83,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xc1,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xc1,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xc1,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x84,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x84,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x84,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x84,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x84,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x84,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x84,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x84,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x84,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x84,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x84,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x84,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x84,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x84,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x84,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x85,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xc2,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xc2,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xc2,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x86,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x86,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x86,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x86,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x86,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x86,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x86,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x86,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x86,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x86,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x86,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x86,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x86,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x86,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x86,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x87,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xc3,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xc3,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xc3,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x88,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x88,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x88,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x88,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x88,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x88,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x88,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x88,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x88,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x88,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x88,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x88,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x88,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x88,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x88,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x89,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xc4,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xc4,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xc4,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x8a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x8a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x8a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x8a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x8a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x8a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x8a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x8a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x8a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x8a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x8a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x8a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x8a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x8a,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x8a,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x8b,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xc5,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xc5,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xc5,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x8c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x8c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x8c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x8c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x8c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x8c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x8c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x8c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x8c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x8c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x8c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x8c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x8c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x8c,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x8c,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x8d,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xc6,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xc6,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xc6,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x8e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x8e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x8e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x8e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x8e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x8e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x8e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x8e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x8e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x8e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x8e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x8e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x8e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, 0xaf123456, v2
 // W64: encoding: [0xff,0x04,0x8e,0x7d,0x56,0x34,0x12,0xaf]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, 0xaf123456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, 0x3f717273, v2
 // W64: encoding: [0xff,0x04,0x8e,0x7d,0x73,0x72,0x71,0x3f]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, 0x3f717273, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x8f,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xc7,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xc7,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xc7,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x90,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x90,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x90,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x90,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x90,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x90,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x90,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x90,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x90,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x90,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x90,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x90,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x90,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x90,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x90,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x91,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xc8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xc8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xc8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xc8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x92,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x92,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x92,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x92,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x92,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x92,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x92,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x92,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x92,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x92,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x92,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x92,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x92,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x92,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x92,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x93,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xc9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xc9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xc9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xc9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x94,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x94,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x94,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x94,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x94,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x94,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x94,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x94,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x94,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x94,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x94,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x94,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x94,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x94,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x94,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x95,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xca,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xca,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xca,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xca,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x96,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x96,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x96,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x96,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x96,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x96,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x96,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x96,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x96,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x96,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x96,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x96,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x96,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x96,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x96,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x97,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xcb,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xcb,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xcb,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xcb,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x98,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x98,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x98,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x98,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x98,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x98,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x98,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x98,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x98,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x98,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x98,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x98,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x98,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x98,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x98,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x99,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xcc,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xcc,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xcc,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xcc,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x9a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x9a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x9a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x9a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x9a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x9a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x9a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x9a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x9a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x9a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x9a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x9a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x9a,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x9a,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x9a,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x9b,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xcd,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xcd,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xcd,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xcd,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x9c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x9c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x9c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x9c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x9c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x9c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x9c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x9c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x9c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x9c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x9c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x9c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x9c,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x9c,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x9c,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x9d,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xce,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xce,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xce,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xce,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0x9e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0x9e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0x9e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0x9e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0x9e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0x9e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0x9e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0x9e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0x9e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0x9e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0x9e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0x9e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0x9e,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0x9e,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0x9e,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0x9f,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xcf,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xcf,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xcf,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xcf,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0xd0,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0xd0,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0xd0,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0xd0,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0xd0,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0xd0,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0xd0,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0xd0,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0xd0,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0xd0,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0xd0,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0xd0,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0xd0,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0xd0,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0xd0,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0xd1,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xe8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xe8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xe8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xe8,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0xd2,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0xd2,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0xd2,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0xd2,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0xd2,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0xd2,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0xd2,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0xd2,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0xd2,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0xd2,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0xd2,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0xd2,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0xd2,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0xd2,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0xd2,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0xd3,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xe9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xe9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xe9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xe9,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0xd4,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0xd4,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0xd4,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0xd4,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0xd4,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0xd4,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0xd4,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0xd4,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0xd4,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0xd4,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0xd4,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0xd4,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0xd4,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0xd4,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0xd4,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0xd5,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xea,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xea,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xea,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xea,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0xd6,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0xd6,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0xd6,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0xd6,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0xd6,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0xd6,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0xd6,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0xd6,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0xd6,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0xd6,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0xd6,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0xd6,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0xd6,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0xd6,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0xd6,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0xd7,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xeb,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xeb,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xeb,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xeb,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0xd8,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0xd8,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0xd8,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0xd8,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0xd8,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0xd8,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0xd8,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0xd8,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0xd8,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0xd8,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0xd8,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0xd8,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0xd8,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0xd8,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0xd8,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0xd9,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xec,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xec,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xec,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xec,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0xda,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0xda,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0xda,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0xda,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0xda,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0xda,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0xda,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0xda,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0xda,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0xda,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0xda,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0xda,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0xda,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0xda,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0xda,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0xdb,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xed,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xed,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xed,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xed,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0xdc,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0xdc,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0xdc,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0xdc,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0xdc,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0xdc,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0xdc,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0xdc,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0xdc,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0xdc,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0xdc,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0xdc,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0xdc,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0xdc,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0xdc,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0xdd,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xee,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xee,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xee,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xee,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, v1, v2
 // W64: encoding: [0x01,0x05,0xde,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, v255, v2
 // W64: encoding: [0xff,0x05,0xde,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, s1, v2
 // W64: encoding: [0x01,0x04,0xde,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, s101, v2
 // W64: encoding: [0x65,0x04,0xde,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, vcc_lo, v2
 // W64: encoding: [0x6a,0x04,0xde,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, vcc_hi, v2
 // W64: encoding: [0x6b,0x04,0xde,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, m0, v2
 // W64: encoding: [0x7c,0x04,0xde,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, exec_lo, v2
 // W64: encoding: [0x7e,0x04,0xde,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, exec_hi, v2
 // W64: encoding: [0x7f,0x04,0xde,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, 0, v2
 // W64: encoding: [0x80,0x04,0xde,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, -1, v2
 // W64: encoding: [0xc1,0x04,0xde,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, 0.5, v2
 // W64: encoding: [0xf0,0x04,0xde,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, -4.0, v2
 // W64: encoding: [0xf7,0x04,0xde,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, 0xfe0b, v2
 // W64: encoding: [0xff,0x04,0xde,0x7d,0x0b,0xfe,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, 0xfe0b, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, 0x3456, v2
 // W64: encoding: [0xff,0x04,0xde,0x7d,0x56,0x34,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, 0x3456, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc, v1, v255
 // W64: encoding: [0x01,0xff,0xdf,0x7d]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16 vcc, v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[12:13], v1, v2
 // W64: encoding: [0x0c,0x00,0xef,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[12:13], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[100:101], v1, v2
 // W64: encoding: [0x64,0x00,0xef,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[100:101], v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 vcc, v1, v2
 // W64: encoding: [0x6a,0x00,0xef,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 vcc, v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v255, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0xff,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v255, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], s1, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], s1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], s101, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x65,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], s101, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], vcc_lo, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x6a,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], vcc_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], vcc_hi, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x6b,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], vcc_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], m0, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x7c,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], m0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], exec_lo, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x7e,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], exec_lo, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], exec_hi, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x7f,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], exec_hi, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], 0, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x80,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], 0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], -1, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0xc1,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], -1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], 0.5, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0xf0,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], 0.5, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], -4.0, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0xf7,0x04,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], -4.0, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, v255
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xff,0x03,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, v255
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, s2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x05,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, s2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, s101
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xcb,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, s101
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, vcc_lo
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xd5,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, vcc_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, vcc_hi
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xd7,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, vcc_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, m0
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xf9,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, m0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, exec_lo
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xfd,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, exec_lo
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, exec_hi
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xff,0x00,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, exec_hi
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, 0
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x01,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, 0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, -1
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x83,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, -1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, 0.5
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xe1,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, 0.5
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, -4.0
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xef,0x01,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, -4.0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], -v1, v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x05,0x02,0x20]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], -v1, v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, -v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x05,0x02,0x40]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], -v1, -v2
 // W64: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x05,0x02,0x60]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], -v1, -v2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s[10:11], v1, v2 clamp
 // W64: encoding: [0x0a,0x80,0xef,0xd4,0x01,0x05,0x02,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_e64 s[10:11], v1, v2 clamp
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x52,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x52,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x52,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x52,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x52,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x52,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x52,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x52,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x52,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x52,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x52,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x52,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x52,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x52,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x52,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x53,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xa9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xa9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xa9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xa9,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x54,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x54,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x54,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x54,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x54,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x54,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x54,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x54,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x54,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x54,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x54,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x54,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x54,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x54,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x54,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x55,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xaa,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xaa,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xaa,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xaa,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x56,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x56,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x56,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x56,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x56,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x56,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x56,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x56,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x56,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x56,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x56,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x56,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x56,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x56,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x56,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x57,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xab,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xab,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xab,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xab,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x58,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x58,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x58,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x58,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x58,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x58,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x58,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x58,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x58,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x58,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x58,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x58,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x58,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x58,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x58,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x59,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xac,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xac,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xac,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xac,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x5a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x5a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x5a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x5a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x5a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x5a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x5a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x5a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x5a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x5a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x5a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x5a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x5a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x5a,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x5a,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x5b,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xad,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xad,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xad,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xad,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x5c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x5c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x5c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x5c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x5c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x5c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x5c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x5c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x5c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x5c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x5c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x5c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x5c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x5c,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x5c,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x5d,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xae,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xae,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xae,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xae,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x80,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x80,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x80,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x80,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x80,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x80,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x80,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x80,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x80,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x80,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x80,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x80,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x80,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x80,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x80,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x81,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xc0,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xc0,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xc0,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xc0,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x82,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x82,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x82,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x82,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x82,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x82,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x82,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x82,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x82,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x82,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x82,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x82,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x82,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x82,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x82,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x83,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xc1,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xc1,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xc1,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xc1,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x84,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x84,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x84,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x84,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x84,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x84,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x84,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x84,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x84,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x84,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x84,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x84,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x84,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x84,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x84,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x85,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xc2,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xc2,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xc2,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xc2,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x86,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x86,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x86,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x86,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x86,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x86,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x86,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x86,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x86,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x86,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x86,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x86,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x86,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x86,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x86,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x87,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xc3,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xc3,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xc3,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xc3,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x88,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x88,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x88,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x88,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x88,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x88,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x88,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x88,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x88,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x88,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x88,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x88,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x88,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x88,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x88,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x89,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xc4,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xc4,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xc4,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xc4,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x8a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x8a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x8a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x8a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x8a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x8a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x8a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x8a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x8a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x8a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x8a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x8a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x8a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x8a,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x8a,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x8b,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xc5,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xc5,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xc5,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xc5,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x8c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x8c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x8c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x8c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x8c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x8c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x8c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x8c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x8c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x8c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x8c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x8c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x8c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x8c,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x8c,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x8d,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xc6,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xc6,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xc6,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xc6,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x8e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x8e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x8e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x8e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x8e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x8e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x8e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x8e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x8e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x8e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x8e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x8e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x8e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, 0xaf123456, v2
 // W32: encoding: [0xff,0x04,0x8e,0x7d,0x56,0x34,0x12,0xaf]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, 0xaf123456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, 0x3f717273, v2
 // W32: encoding: [0xff,0x04,0x8e,0x7d,0x73,0x72,0x71,0x3f]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, 0x3f717273, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x8f,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xc7,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xc7,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xc7,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xc7,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x90,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x90,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x90,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x90,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x90,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x90,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x90,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x90,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x90,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x90,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x90,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x90,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x90,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x90,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x90,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x91,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xc8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xc8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xc8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xc8,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xc8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x92,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x92,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x92,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x92,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x92,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x92,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x92,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x92,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x92,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x92,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x92,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x92,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x92,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x92,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x92,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x93,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xc9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xc9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xc9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xc9,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xc9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x94,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x94,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x94,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x94,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x94,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x94,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x94,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x94,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x94,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x94,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x94,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x94,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x94,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x94,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x94,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x95,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xca,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xca,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xca,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xca,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xca,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x96,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x96,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x96,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x96,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x96,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x96,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x96,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x96,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x96,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x96,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x96,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x96,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x96,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x96,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x96,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x97,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xcb,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xcb,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xcb,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xcb,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xcb,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x98,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x98,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x98,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x98,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x98,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x98,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x98,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x98,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x98,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x98,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x98,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x98,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x98,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x98,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x98,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x99,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xcc,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xcc,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xcc,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xcc,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xcc,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x9a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x9a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x9a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x9a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x9a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x9a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x9a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x9a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x9a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x9a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x9a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x9a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x9a,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x9a,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x9a,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x9b,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xcd,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xcd,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xcd,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xcd,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xcd,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x9c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x9c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x9c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x9c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x9c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x9c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x9c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x9c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x9c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x9c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x9c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x9c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x9c,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x9c,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x9c,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x9d,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xce,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xce,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xce,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xce,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xce,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0x9e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0x9e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0x9e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0x9e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0x9e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0x9e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0x9e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0x9e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0x9e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0x9e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0x9e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0x9e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0x9e,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0x9e,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0x9e,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0x9f,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xcf,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xcf,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xcf,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xcf,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xcf,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0xd0,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0xd0,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0xd0,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0xd0,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0xd0,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0xd0,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0xd0,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0xd0,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0xd0,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0xd0,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0xd0,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0xd0,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0xd0,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0xd0,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0xd0,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0xd1,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xe8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xe8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xe8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xe8,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xe8,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0xd2,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0xd2,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0xd2,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0xd2,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0xd2,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0xd2,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0xd2,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0xd2,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0xd2,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0xd2,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0xd2,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0xd2,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0xd2,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0xd2,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0xd2,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0xd3,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xe9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xe9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xe9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xe9,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xe9,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0xd4,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0xd4,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0xd4,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0xd4,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0xd4,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0xd4,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0xd4,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0xd4,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0xd4,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0xd4,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0xd4,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0xd4,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0xd4,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0xd4,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0xd4,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0xd5,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xea,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xea,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xea,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xea,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xea,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0xd6,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0xd6,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0xd6,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0xd6,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0xd6,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0xd6,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0xd6,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0xd6,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0xd6,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0xd6,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0xd6,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0xd6,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0xd6,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0xd6,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0xd6,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0xd7,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xeb,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xeb,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xeb,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xeb,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xeb,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0xd8,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0xd8,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0xd8,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0xd8,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0xd8,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0xd8,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0xd8,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0xd8,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0xd8,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0xd8,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0xd8,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0xd8,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0xd8,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0xd8,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0xd8,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0xd9,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xec,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xec,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xec,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xec,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xec,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0xda,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0xda,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0xda,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0xda,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0xda,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0xda,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0xda,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0xda,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0xda,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0xda,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0xda,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0xda,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0xda,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0xda,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0xda,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0xdb,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xed,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xed,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xed,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xed,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xed,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0xdc,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0xdc,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0xdc,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0xdc,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0xdc,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0xdc,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0xdc,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0xdc,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0xdc,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0xdc,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0xdc,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0xdc,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0xdc,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0xdc,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0xdc,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0xdd,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xee,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xee,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xee,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xee,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xee,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, v1, v2
 // W32: encoding: [0x01,0x05,0xde,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, v255, v2
 // W32: encoding: [0xff,0x05,0xde,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, s1, v2
 // W32: encoding: [0x01,0x04,0xde,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, s101, v2
 // W32: encoding: [0x65,0x04,0xde,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, vcc_lo, v2
 // W32: encoding: [0x6a,0x04,0xde,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, vcc_hi, v2
 // W32: encoding: [0x6b,0x04,0xde,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, m0, v2
 // W32: encoding: [0x7c,0x04,0xde,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, exec_lo, v2
 // W32: encoding: [0x7e,0x04,0xde,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, exec_hi, v2
 // W32: encoding: [0x7f,0x04,0xde,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, 0, v2
 // W32: encoding: [0x80,0x04,0xde,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, -1, v2
 // W32: encoding: [0xc1,0x04,0xde,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, 0.5, v2
 // W32: encoding: [0xf0,0x04,0xde,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, -4.0, v2
 // W32: encoding: [0xf7,0x04,0xde,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, 0xfe0b, v2
 // W32: encoding: [0xff,0x04,0xde,0x7d,0x0b,0xfe,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, 0xfe0b, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, 0x3456, v2
 // W32: encoding: [0xff,0x04,0xde,0x7d,0x56,0x34,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, 0x3456, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16 vcc_lo, v1, v255
 // W32: encoding: [0x01,0xff,0xdf,0x7d]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16 vcc_lo, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s12, v1, v2
 // W32: encoding: [0x0c,0x00,0xef,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s12, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s100, v1, v2
 // W32: encoding: [0x64,0x00,0xef,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s100, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 vcc_lo, v1, v2
 // W32: encoding: [0x6a,0x00,0xef,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 vcc_lo, v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v255, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0xff,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v255, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, s1, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, s1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, s101, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x65,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, s101, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, vcc_lo, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x6a,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, vcc_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, vcc_hi, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x6b,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, vcc_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, m0, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x7c,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, m0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, exec_lo, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x7e,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, exec_lo, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, exec_hi, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x7f,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, exec_hi, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, 0, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x80,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, 0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, -1, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0xc1,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, -1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, 0.5, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0xf0,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, 0.5, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, -4.0, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0xf7,0x04,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, -4.0, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, v255
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xff,0x03,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, v255
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, s2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x05,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, s2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, s101
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xcb,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, s101
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, vcc_lo
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xd5,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, vcc_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, vcc_hi
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xd7,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, vcc_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, m0
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xf9,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, m0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, exec_lo
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xfd,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, exec_lo
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, exec_hi
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xff,0x00,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, exec_hi
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, 0
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x01,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, 0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, -1
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x83,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, -1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, 0.5
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xe1,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, 0.5
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, -4.0
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0xef,0x01,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, -4.0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, -v1, v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x05,0x02,0x20]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, -v1, v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, -v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x05,0x02,0x40]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, -v1, -v2
 // W32: encoding: [0x0a,0x00,0xef,0xd4,0x01,0x05,0x02,0x60]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, -v1, -v2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_e64 s10, v1, v2 clamp
 // W32: encoding: [0x0a,0x80,0xef,0xd4,0x01,0x05,0x02,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_e64 s10, v1, v2 clamp
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x53,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x55,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x57,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x59,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x5b,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x5d,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u16_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x81,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x83,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x85,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x87,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x89,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x8b,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ne_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x8d,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x8f,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x0e,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x0e]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_t_u32_sdwa s[6:7], v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x91,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_f_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x93,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lt_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x95,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_eq_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x97,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_le_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x99,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_gt_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x9b,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_lg_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x9d,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ge_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0x9f,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_o_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0xd1,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_u_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0xd3,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nge_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0xd5,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlg_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0xd7,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_ngt_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0xd9,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nle_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0xdb,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_neq_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0xdd,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_nlt_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x88,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[8:9], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0xe4,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[100:101], v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x00,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa vcc, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0xff,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x65,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x6a,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x6b,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x7c,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x7e,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x7f,0x86,0x86,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0xfe,0xdf,0x7d,0x01,0x86,0x06,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x00,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x01,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x02,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x03,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x04,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x05,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x16,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x26,0x06]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x00]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x01]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x02]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x03]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x04]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x05]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x16]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W64: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x26]
-// W32-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W32-ERR-NEXT: v_cmp_tru_f16_sdwa s[6:7], v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W32-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x53,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x52,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x55,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x54,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x57,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x56,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x59,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x58,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x5b,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5a,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x5d,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x5c,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u16_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x81,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x80,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x83,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x82,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x85,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x84,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x87,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x86,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x89,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x88,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x8b,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ne_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8a,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ne_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x8d,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8c,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x8f,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x0e,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, sext(v1), v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_t_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x8e,0x7d,0x01,0x86,0x06,0x0e]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_t_u32_sdwa s6, v1, sext(v2) src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x91,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_f_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x90,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_f_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x93,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lt_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x92,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lt_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x95,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_eq_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x94,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_eq_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x97,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_le_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x96,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_le_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x99,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_gt_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x98,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_gt_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x9b,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_lg_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9a,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_lg_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x9d,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ge_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9c,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ge_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0x9f,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_o_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0x9e,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_o_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0xd1,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_u_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd0,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_u_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0xd3,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nge_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd2,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nge_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0xd5,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlg_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd4,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlg_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0xd7,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_ngt_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd6,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_ngt_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0xd9,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nle_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xd8,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nle_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0xdb,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_neq_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xda,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_neq_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0xdd,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_nlt_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xdc,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_nlt_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x88,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s8, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0xe4,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s100, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x00,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa vcc_lo, v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0xff,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v255, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, s1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x65,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, s101, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x6a,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, vcc_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x6b,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, vcc_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x7c,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, m0, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x7e,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, exec_lo, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x7f,0x86,0x86,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, exec_hi, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0xfe,0xdf,0x7d,0x01,0x86,0x06,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v255 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x00,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:BYTE_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x01,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:BYTE_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x02,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:BYTE_2 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x03,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:BYTE_3 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x04,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:WORD_0 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x05,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:WORD_1 src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x16,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, -v1, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x26,0x06]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, |v1|, v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x00]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x01]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x02]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_2
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x03]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:BYTE_3
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x04]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_0
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x05]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, v2 src0_sel:DWORD src1_sel:WORD_1
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x16]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, -v2 src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_cmp_tru_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
 // W32: encoding: [0xf9,0x04,0xde,0x7d,0x01,0x86,0x06,0x26]
-// W64-ERR: error: {{instruction not supported on this GPU|invalid operand for instruction}}
-// W64-ERR-NEXT: v_cmp_tru_f16_sdwa s6, v1, |v2| src0_sel:DWORD src1_sel:DWORD
+// W64-ERR: :[[@LINE-2]]:{{[0-9]+}}: error: {{instruction not supported on this GPU|invalid operand for instruction}}
 
 v_interp_p1_f32_e64 v5, v2, attr0.x
 // GFX10: v_interp_p1_f32_e64 v5, v2, attr0.x ; encoding: [0x05,0x00,0x00,0xd6,0x00,0x04,0x02,0x00]


        


More information about the llvm-commits mailing list