freebsd-dev/test/Sema/ms-fuzzy-asm.c
2010-01-01 10:34:51 +00:00

11 lines
230 B
C

// RUN: %clang_cc1 %s -verify -fms-extensions
// XFAIL: *
#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] }