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