AMDGPU: Allow f16/bf16 for DS_READ_TR16_B64 gfx950 builtins (#118297)
[llvm-project.git] / llvm / test / tools / llvm-ml / nested_proc_errors.asm
blob32356e9cf553102a3898ac5c64735f1a59610a79
1 ; RUN: not llvm-ml -filetype=s %s /Fo - 2>&1 | FileCheck %s --implicit-check-not=error:
3 .code
5 t1 PROC
6 xor eax, eax
7 t1_nested PROC
8 ret
9 t1 ENDP
10 t1_nested ENDP
11 ; CHECK: :[[# @LINE - 2]]:1: error: endp does not match current procedure 't1_nested'
13 END