Commit 0e13506e by Zack Weinberg Committed by Zack Weinberg

noreturn-1.c (foo7, foo8): Revert previous change.

	* gcc.dg/noreturn-1.c (foo7, foo8): Revert previous change.
	* gcc.dg/noreturn-2.c (noreturn): Likewise.

From-SVN: r34372
parent cc4316b5
2000-06-02 Zack Weinberg <zack@wolery.cumb.org>
* gcc.dg/noreturn-1.c (foo7, foo8): Revert previous change.
* gcc.dg/noreturn-2.c (noreturn): Likewise.
2000-06-01 Zack Weinberg <zack@wolery.cumb.org>
* gcc.dg/compare2.c (case 12): XFAIL.
......
......@@ -49,11 +49,11 @@ void
foo7(void)
{
foo6();
} /* { dg-bogus "warning:" "this function should not get any warnings" { xfail *-*-* } } */
} /* { dg-bogus "warning:" "this function should not get any warnings" } */
extern void foo8(void) __attribute__ ((__noreturn__));
void
foo8(void)
{
foo7();
} /* { dg-warning "`noreturn' function does return" "detect return from tail call" { xfail *-*-* } } */
} /* { dg-warning "`noreturn' function does return" "detect return from tail call" } */
......@@ -9,4 +9,4 @@ void
noreturn (int x)
{
abort ();
} /* { dg-bogus "does return" "noreturn does return" { xfail *-*-* } } */
} /* { dg-bogus "does return" "noreturn does return" } */
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