1; RUN: not llvm-ml %s /Zs /Fo - 2>&1 | FileCheck %s
2
3.code
4
5t1 PROC
6  blah
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: error: invalid instruction mnemonic 'blah'
14
15; check for the .text symbol (appears in both object files & .s output)
16; CHECK-NOT: .text
17
18end
19