diff --git a/clang/test/SemaCXX/attr-print.cpp b/clang/test/SemaCXX/attr-print.cpp index 419f608c04fc..c7335c5e3bf8 100644 --- a/clang/test/SemaCXX/attr-print.cpp +++ b/clang/test/SemaCXX/attr-print.cpp @@ -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));