aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/tools/llvm-ml/line_continuations.asm
blob: 1afee82c65b282dd8f3c01caac320f8a308e65a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; 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