xref: /llvm-project/llvm/test/tools/llvm-ml/nested_proc_errors.asm (revision 94fae7a581d6772e9f4ec0270485a4308eb8d2dc)
1*94fae7a5SEric Astor; RUN: not llvm-ml -filetype=s %s /Fo - 2>&1 | FileCheck %s --implicit-check-not=error:
2*94fae7a5SEric Astor
3*94fae7a5SEric Astor.code
4*94fae7a5SEric Astor
5*94fae7a5SEric Astort1 PROC
6*94fae7a5SEric Astor  xor eax, eax
7*94fae7a5SEric Astort1_nested PROC
8*94fae7a5SEric Astor  ret
9*94fae7a5SEric Astort1 ENDP
10*94fae7a5SEric Astort1_nested ENDP
11*94fae7a5SEric Astor; CHECK: :[[# @LINE - 2]]:1: error: endp does not match current procedure 't1_nested'
12*94fae7a5SEric Astor
13*94fae7a5SEric AstorEND
14