Test that we print MS keyword attributes without a __declspec(...) adornment.

llvm-svn: 173754
This commit is contained in:
Richard Smith 2013-01-29 02:31:57 +00:00
parent b84a9dbf6b
commit 210b67d221
1 changed files with 7 additions and 0 deletions

View File

@ -15,3 +15,10 @@ void foo() __attribute__((const));
// CHECK: void bar() __attribute__((__const));
void bar() __attribute__((__const));
// FIXME: Print these at a valid location for these attributes.
// CHECK: int *p32 __ptr32;
int * __ptr32 p32;
// CHECK: int *p64 __ptr64;
int * __ptr64 p64;