max-stack-align.c: New testcase.

2010-12-17  Ahmad Sharif  <asharif@google.com>

	* gcc.target/i386/max-stack-align.c: New testcase.

From-SVN: r168011
This commit is contained in:
Ahmad Sharif 2010-12-18 02:43:54 +00:00 committed by Ahmad Sharif
parent a4714d140f
commit 748414642f
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2010-12-17 Ahmad Sharif <asharif@google.com>
* gcc.target/i386/max-stack-align.c: New testcase.
2010-12-17 Nicola Pero <nicola.pero@meta-innovation.com>
* objc.dg/exceptions-4.m: Adjust for change in error message.

View File

@ -0,0 +1,14 @@
/* { dg-do compile } */
/* { dg-options "-fomit-frame-pointer" } */
/* { dg-require-effective-target lp64 } */
void foo()
{
int a=0, b=0, c=0, e=0, f=0, g=0, h=0, i=0;
__asm__ __volatile__ (""
:
:
: "bp"
);
}