diff mbox

[committed] Fix aarch64/target_attr_10.c test following r227997

Message ID 5603FE64.9090609@arm.com
State New
Headers show

Commit Message

Szabolcs Nagy Sept. 24, 2015, 1:45 p.m. UTC
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.nagy@arm.com>

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

Patch

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 } */