blob: 3a1efb0984d6c63a6b23e10d9d15858566b9b639 [file] [log] [blame]
Eli Friedman3fedbe12011-09-30 01:13:51 +00001// RUN: %clang_cc1 %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 }
8void t3(void) { __asm M2 0x2c }
9void* t4(void) { __asm mov eax, fs:[0x10] }
10void t5() {
11 __asm {
12 int 0x2c ; } asm comments are fun! }{
13 }
14 __asm {}
15}
16int t6() {
17 __asm int 3 ; } comments for single-line asm
18 __asm {}
19
20 __asm int 4
21 return 10;
22}
Chad Rosiera01eddb2012-06-12 19:03:42 +000023int t7() {
24 __asm {
25 push ebx
26 mov ebx, 0x07
27 pop ebx
28 }
29}
30int t_fail() { // expected-note {{to match this}}
Eli Friedman3fedbe12011-09-30 01:13:51 +000031 __asm
32 __asm { // expected-error 3 {{expected}} expected-note {{to match this}}