repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git]
/
llvm
/
test
/
tools
/
llvm-ml
/
line_continuations.asm
blob
1afee82c65b282dd8f3c01caac320f8a308e65a0
1
; RUN: llvm-ml -filetype=s %s /Fo - | FileCheck %s
2
3
.code
4
5
t1:
6
mov
eax
,
\
7
ebx
8
; CHECK: t1:
9
; CHECK-NEXT: mov eax, ebx
10
11
t2:
12
mov
eax
, [
ebx
+
\
13
1
]
14
; CHECK: t2:
15
; CHECK-NEXT: mov eax, dword ptr [ebx + 1]
16
17
END