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

17 lines
182 B
NASM

; RUN: llvm-ml -filetype=s %s /Fo - | FileCheck %s
.code
t1:
call dword ptr [eax]
; CHECK-LABEL: t1:
; CHECK-NEXT: call
t2 dword 5
; CHECK-LABEL: t2:
; CHECK-NEXT: .long 5
END