xref: /llvm-project/llvm/test/tools/llvm-ml/parse_only.asm (revision 1236dbc2fadfc0466a0a62eb147cdd3565c4898d)
1*1236dbc2SEric Astor; RUN: llvm-ml %s /Zs /Fo - | FileCheck %s
2*1236dbc2SEric Astor
3*1236dbc2SEric Astor.code
4*1236dbc2SEric Astor
5*1236dbc2SEric Astort1 PROC
6*1236dbc2SEric Astor  ECHO Testing!
7*1236dbc2SEric Astor  ret
8*1236dbc2SEric Astort1 ENDP
9*1236dbc2SEric Astor
10*1236dbc2SEric Astor; check for the .text symbol (appears in both object files & .s output)
11*1236dbc2SEric Astor; CHECK-NOT: .text
12*1236dbc2SEric Astor
13*1236dbc2SEric Astor; CHECK: Testing!
14*1236dbc2SEric Astor
15*1236dbc2SEric Astor; check for the .text symbol (appears in both object files & .s output)
16*1236dbc2SEric Astor; CHECK-NOT: .text
17*1236dbc2SEric Astor
18*1236dbc2SEric Astorend
19