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