[OpenACC] Implement 'collapse' for combined constructs.
[llvm-project.git] / llvm / test / tools / llvm-ml / include_by_env_var.asm
blob6f4b269d58075337634479a499aeada972811336
1 ; RUN: env INCLUDE=%S llvm-ml -filetype=s %s /Fo - | FileCheck %s
3 include included.inc
5 .code
7 t1:
8 mov eax, Const
10 ; CHECK-LABEL: t1:
11 ; CHECK-NEXT: mov eax, 8
13 t2:
14 push_pop ebx
16 ; CHECK-LABEL: t2:
17 ; CHECK-NEXT: push ebx
18 ; CHECK-NEXT: pop ebx
20 end