aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2010-03-22 16:38:35 -0400
committerJason Merrill <jason@gcc.gnu.org>2010-03-22 16:38:35 -0400
commitce30e6fd06d9434c9b99162da448d37963fbcf24 (patch)
tree8fa114698e3515724c7230f5173bd35d599308b7 /gcc/testsuite/gcc.dg
parent3a1ef68af0f80dc73971e7395f91644316ebd8c3 (diff)
downloadgcc-ce30e6fd06d9434c9b99162da448d37963fbcf24.zip
gcc-ce30e6fd06d9434c9b99162da448d37963fbcf24.tar.gz
gcc-ce30e6fd06d9434c9b99162da448d37963fbcf24.tar.bz2
c-pretty-print.c (pp_c_specifier_qualifier_list): Use () rather than [], and move before the element type.
* c-pretty-print.c (pp_c_specifier_qualifier_list) [VECTOR_TYPE]: Use () rather than [], and move before the element type. * cp-demangle.c (d_print_mod): Use () rather than [] for vectors. From-SVN: r157650
Diffstat (limited to 'gcc/testsuite/gcc.dg')
-rw-r--r--gcc/testsuite/gcc.dg/pr36997.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/pr36997.c b/gcc/testsuite/gcc.dg/pr36997.c
index 2bed933..13461b8 100644
--- a/gcc/testsuite/gcc.dg/pr36997.c
+++ b/gcc/testsuite/gcc.dg/pr36997.c
@@ -5,5 +5,5 @@ typedef int __m64 __attribute__ ((__vector_size__ (8), __may_alias__));
__m64 _mm_add_si64 (__m64 __m1, __m64 __m2)
{
return (__m64) __builtin_ia32_paddq ((long long)__m1, (long long)__m2); /* { dg-error "incompatible type" } */
- /* { dg-message "note: expected 'long long int __vector.1.' but argument is of type 'long long int'" "" { target *-*-* } 7 } */
+ /* { dg-message "note: expected '__vector.1. long long int' but argument is of type 'long long int'" "" { target *-*-* } 7 } */
}