blob: 5e387f38083658aa759fde36cdb694f411bfd425 [file] [log] [blame]
Steve Naroff03d6bc62008-02-08 03:36:19 +00001// RUN: clang %s -verify -fms-extensions
2
3#define M __asm int 0x2c
4#define M2 int
5
6void t1(void) { M }
7void t2(void) { __asm int 0x2c }
Steve Naroff36280972008-02-08 18:01:27 +00008void t3(void) { __asm M2 0x2c }
Steve Naroff03d6bc62008-02-08 03:36:19 +00009