From 210b67d22107e125ce55d40834cb274b190fa80b Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Tue, 29 Jan 2013 02:31:57 +0000 Subject: [PATCH] Test that we print MS keyword attributes without a __declspec(...) adornment. llvm-svn: 173754 --- clang/test/Sema/attr-print.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/clang/test/Sema/attr-print.c b/clang/test/Sema/attr-print.c index 5e4c0c2..b523c18 100644 --- a/clang/test/Sema/attr-print.c +++ b/clang/test/Sema/attr-print.c @@ -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; -- 2.7.4