gcc commit r227997 https://gcc.gnu.org/ml/gcc-patches/2015-09/msg01455.html
changed "error:" to "note:" for "called from here" messages,
but missed adjusting an aarch64 target test.

committed as obvious.

gcc/testsuite/ChangeLog:

2015-09-24  Szabolcs Nagy  <szabolcs.n...@arm.com>

        * gcc.target/aarch64/target_attr_10.c (foo): Use dg-message for note.

diff --git a/gcc/testsuite/gcc.target/aarch64/target_attr_10.c b/gcc/testsuite/gcc.target/aarch64/target_attr_10.c
index b2c48c4..6d05771 100644
--- a/gcc/testsuite/gcc.target/aarch64/target_attr_10.c
+++ b/gcc/testsuite/gcc.target/aarch64/target_attr_10.c
@@ -10,7 +10,7 @@ __attribute__ ((target ("+nosimd")))
 uint8x16_t
 foo (uint8x16_t a, uint8x16_t b, uint8x16_t c)
 {
-  return vbslq_u8 (a, b, c); /* { dg-error "called from here" } */
+  return vbslq_u8 (a, b, c); /* { dg-message "called from here" } */
 }
 
 /* { dg-error "inlining failed in call to always_inline" "" { target *-*-* } 0 } */

Reply via email to