RequiresArg = true;
}
// Eat any Microsoft extensions.
- if ((Tok.is(tok::kw___cdecl) || Tok.is(tok::kw___stdcall) ||
- (Tok.is(tok::kw___fastcall))) && PP.getLangOptions().Microsoft)
+ while ((Tok.is(tok::kw___cdecl) || Tok.is(tok::kw___stdcall) ||
+ (Tok.is(tok::kw___fastcall))) && PP.getLangOptions().Microsoft)
ConsumeToken();
// If we haven't past the identifier yet (or where the identifier would be
void foo() {
__declspec(align(16)) int *buffer = (int *)_alloca(9);
}
+
+typedef bool (__stdcall __stdcall *blarg)(int);