diff options
Diffstat (limited to 'clang/test/SemaCXX/attr-print.cpp')
-rw-r--r-- | clang/test/SemaCXX/attr-print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/attr-print.cpp b/clang/test/SemaCXX/attr-print.cpp index b741574b125..960050bc710 100644 --- a/clang/test/SemaCXX/attr-print.cpp +++ b/clang/test/SemaCXX/attr-print.cpp @@ -14,7 +14,7 @@ void foo() __attribute__((const)); void bar() __attribute__((__const)); // FIXME: Print this with correct format and order. -// CHECK: void foo1() __attribute__((noinline)) __attribute__((pure)); +// CHECK: void foo1() __attribute__((pure)) __attribute__((noinline)); void foo1() __attribute__((noinline, pure)); // CHECK: typedef int Small1 __attribute__((mode(byte))); |