1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00
llvm-mirror/test/tools/llvm-ml/line_continuations.asm
2021-06-25 23:09:13 -04:00

18 lines
219 B
NASM

; RUN: llvm-ml -filetype=s %s /Fo - | FileCheck %s
.code
t1:
mov eax, \
ebx
; CHECK: t1:
; CHECK-NEXT: mov eax, ebx
t2:
mov eax, [ebx + \
1]
; CHECK: t2:
; CHECK-NEXT: mov eax, dword ptr [ebx + 1]
END