Commit fad03406 by Martin Liska Committed by Martin Liska

Update test-suite expected output after rewording in libsanitizer.

2018-10-31  Martin Liska  <mliska@suse.cz>

	* c-c++-common/ubsan/pr63839.c: Update to new sanitizer message.
	* c-c++-common/ubsan/unreachable-1.c (main): Likewise.
	* c-c++-common/ubsan/unreachable-2.c: Likewise.
	* c-c++-common/ubsan/unreachable-4.c (main): Likewise.

From-SVN: r265670
parent c244886c
2018-10-31 Martin Liska <mliska@suse.cz>
* c-c++-common/ubsan/pr63839.c: Update to new sanitizer message.
* c-c++-common/ubsan/unreachable-1.c (main): Likewise.
* c-c++-common/ubsan/unreachable-2.c: Likewise.
* c-c++-common/ubsan/unreachable-4.c (main): Likewise.
2018-10-31 Thomas Preud'homme <thomas.preudhomme@linaro.org>
PR target/87374
......
......@@ -20,4 +20,4 @@ main (void)
foo ();
}
/* { dg-output "execution reached a __builtin_unreachable\\(\\) call" } */
/* { dg-output "execution reached an unreachable program point" } */
......@@ -7,4 +7,4 @@ main (void)
{
__builtin_unreachable ();
}
/* { dg-output "execution reached a __builtin_unreachable\\(\\) call" } */
/* { dg-output "execution reached an unreachable program point" } */
......@@ -11,4 +11,4 @@ main (void)
return e ? 0 : (__builtin_unreachable (), 1);
}
/* { dg-output "execution reached a __builtin_unreachable\\(\\) call" } */
/* { dg-output "execution reached an unreachable program point" } */
......@@ -7,4 +7,4 @@ main (void)
{
__builtin_unreachable ();
}
/* { dg-output "execution reached a __builtin_unreachable\\(\\) call" } */
/* { dg-output "execution reached an unreachable program point" } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment