xref: /llvm-project/llvm/test/tools/llvm-ml/include_by_env_var.asm (revision 4b5317e937ac5c87c30a67bc76a4e253c2c3516c)
1; RUN: env INCLUDE=%S llvm-ml -filetype=s %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