aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/tools/llvm-ml/include.asm
blob: 29028da8582502aaade7e2e46c54fa7e6917039c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llvm-ml -filetype=s %s /I %S /Fo - | FileCheck %s

include included.inc

.code

t1:
mov eax, Const

; CHECK-LABEL: t1:
; CHECK-NEXT: mov eax, 8

t2:
push_pop ebx

; CHECK-LABEL: t2:
; CHECK-NEXT: push ebx
; CHECK-NEXT: pop ebx

end