Add a testcase for PR target/43668.

2010-05-04  H.J. Lu  <hongjiu.lu@intel.com>

	PR target/43668
	* gcc.target/i386/pr43668.c: New.

From-SVN: r159046
This commit is contained in:
H.J. Lu 2010-05-04 21:15:35 +00:00 committed by H.J. Lu
parent 68fef9f904
commit 55a4607576
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-05-04 H.J. Lu <hongjiu.lu@intel.com>
PR target/43668
* gcc.target/i386/pr43668.c: New.
2010-05-04 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/43028

View File

@ -0,0 +1,10 @@
/* PR target/43668 */
/* { dg-do run } */
/* { dg-options "-fschedule-insns" } */
int foo(int i, ...) {
return i;
}
int main() {
return foo(0, 0.0);
}