xref: /llvm-project/llvm/test/tools/llvm-ml/include.asm (revision e074d580b28b8cdf31fc4813cbc886ef5149d203)
1; RUN: llvm-ml -filetype=s %s /I %S /Fo - | FileCheck %s
2
3include included.inc
4
5.code
6
7t1:
8mov eax, Const
9
10; CHECK-LABEL: t1:
11; CHECK-NEXT: mov eax, 8
12
13t2:
14push_pop ebx
15
16; CHECK-LABEL: t2:
17; CHECK-NEXT: push ebx
18; CHECK-NEXT: pop ebx
19
20end
21