Home | History | Annotate | Download | only in Sema
      1 // RUN: %clang_cc1 %s -verify -fms-extensions
      2 
      3 #define M __asm int 0x2c
      4 #define M2 int
      5 
      6 void t1(void) { M }
      7 void t2(void) { __asm int 0x2c }
      8 void t3(void) { __asm M2 0x2c }
      9 void* t4(void) { __asm mov eax, fs:[0x10] }
     10