builtin-unreachable.c: Don't expect stack adjustments to not be present on machines that align the...

* gcc.target/i386/builtin-unreachable.c: Don't expect stack
	adjustments to not be present on machines that align the stack to
	more than 4 bytes and don't have a red zone yet as that is an
	unimplemented optimization.

From-SVN: r157197
This commit is contained in:
Mike Stump 2010-03-03 16:46:27 +00:00 committed by Mike Stump
parent d1039125cf
commit 83bfaab7d9
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2010-03-03 Mike Stump <mikestump@comcast.net>
* gcc.target/i386/builtin-unreachable.c: Don't expect stack
adjustments to not be present on machines that align the stack to
more than 4 bytes and don't have a red zone yet as that is an
unimplemented optimization.
2010-03-03 Janus Weil <janus@gcc.gnu.org>
PR fortran/43169

View File

@ -9,5 +9,5 @@ int h (char *p)
__builtin_unreachable ();
return p ? 1 : 0;
}
/* { dg-final { scan-assembler-not "%e\[bs\]p" } } */
/* { dg-final { scan-assembler-not "%e\[bs\]p" { target { ! *-*-darwin* } } } } */
/* { dg-final { scan-assembler-not "\[\\t \]+j" } } */