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
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
ms-inline-asm-EVEN.c
blob
572f43540d39754521552e31f60a213e2bdf271f
1
// REQUIRES: x86-registered-target
2
// RUN: %clang_cc1 %s -triple i386-apple-darwin10 -fasm-blocks -emit-llvm -o - | FileCheck %s
3
4
// CHECK: .byte 64
5
// CHECK: .byte 64
6
// CHECK: .byte 64
7
// CHECK: .even
8
void
t1
(
void
) {
9
__asm
{
10
.
byte
64
11
.
byte
64
12
.
byte
64
13
EVEN
14
mov eax
,
ebx
15
}
16
}