New testcase

From-SVN: r30908
This commit is contained in:
Bernd Schmidt 1999-12-14 10:01:23 +00:00 committed by Bernd Schmidt
parent 14d01c31bf
commit 468644e65c
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,7 @@
1999-12-14 Bernd Schmidt <bernds@cygnus.co.uk>
* gcc.dg/991214-1.c: New test.
Mon Dec 13 23:03:09 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/991213-3.c: New test.

View file

@ -0,0 +1,7 @@
/* { dg-do compile { target i?86-*-* } } */
int foo (int, int) __attribute__ ((regparm (3)));
int foo (int x, int y)
{
asm volatile("" : : "d" (x), "r" (y));
}