From: Michael Han Date: Tue, 29 Jan 2013 04:13:20 +0000 (+0000) Subject: Add a test case for attribute print. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=353299a29d3a1847b9bf657fd5478e40cffd5e5e;p=clang Add a test case for attribute print. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173765 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaCXX/attr-print.cpp b/test/SemaCXX/attr-print.cpp index 419f608c04..c7335c5e3b 100644 --- a/test/SemaCXX/attr-print.cpp +++ b/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));