Add a test case for attribute print.

llvm-svn: 173765
This commit is contained in:
Michael Han 2013-01-29 04:13:20 +00:00
parent f823dd2ef7
commit ff37d94e6f
1 changed files with 4 additions and 0 deletions

View File

@ -14,3 +14,7 @@ void foo() __attribute__((const));
// CHECK: void bar() __attribute__((__const));
void bar() __attribute__((__const));
// FIXME: Print this with correct format and order.
// CHECK: void foo1() __attribute__((pure)) __attribute__((noinline));
void foo1() __attribute__((noinline, pure));