repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
llvm
/
test
/
tools
/
llvm-ml
/
nested_proc.asm
blob
540541f597fc312855782ad6ce8f26390a365737
1
; RUN: llvm-ml -m32 -filetype=s %s /Fo - | FileCheck %s
2
; RUN: llvm-ml -m64 -filetype=s %s /Fo - | FileCheck %s
3
4
.code
5
6
t1
PROC
7
xor
eax
,
eax
8
t1_nested
PROC
9
ret
10
t1_nested
ENDP
11
t1
ENDP
12
13
; CHECK-LABEL: t1:
14
; CHECK: xor eax, eax
15
; CHECK: t1_nested:
16
; CHECK: ret
17
18
t2
PROC
19
xor
eax
,
eax
20
t2_nested
PROC
21
ret
22
T2_nEsTeD
ENDP
23
t2
ENDP
24
25
; CHECK-LABEL: t2:
26
; CHECK: xor eax, eax
27
; CHECK: t2_nested:
28
; CHECK: ret
29
30
END