Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f8fd82ba49827db0f6a6ba00c55a7b56b12a19fa
/
.
/
test
/
Sema
/
ms-fuzzy-asm.c
blob: 250e3222564d8f6c9f8c57fb596a625d52b73dc8 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -verify -fms-extensions
#define
M __asm
int
0x2c
#define
M2
int
void
t1
(
void
)
{
M
}
void
t2
(
void
)
{
__asm
int
0x2c
}
void
t3
(
void
)
{
__asm M2
0x2c
}
void
*
t4
(
void
)
{
__asm mov eax
,
fs
:[
0x10
]
}