llvm-project/llvm/test/tools/llvm-ml/parse_only.asm

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
297 B
NASM
Raw Normal View History

; RUN: llvm-ml %s /Zs /Fo - | FileCheck %s
.code
t1 PROC
ECHO Testing!
ret
t1 ENDP
; check for the .text symbol (appears in both object files & .s output)
; CHECK-NOT: .text
; CHECK: Testing!
; check for the .text symbol (appears in both object files & .s output)
; CHECK-NOT: .text
end