[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / tools / llvm-ml / nested_proc.asm
blob540541f597fc312855782ad6ce8f26390a365737
1 ; RUN: llvm-ml -m32 -filetype=s %s /Fo - | FileCheck %s
2 ; RUN: llvm-ml -m64 -filetype=s %s /Fo - | FileCheck %s
4 .code
6 t1 PROC
7 xor eax, eax
8 t1_nested PROC
9 ret
10 t1_nested ENDP
11 t1 ENDP
13 ; CHECK-LABEL: t1:
14 ; CHECK: xor eax, eax
15 ; CHECK: t1_nested:
16 ; CHECK: ret
18 t2 PROC
19 xor eax, eax
20 t2_nested PROC
21 ret
22 T2_nEsTeD ENDP
23 t2 ENDP
25 ; CHECK-LABEL: t2:
26 ; CHECK: xor eax, eax
27 ; CHECK: t2_nested:
28 ; CHECK: ret
30 END