re PR target/66137 (ICE with -ffixed-ebp)

PR target/66137
	* gcc.target/i386/pr66137.c: New test.

From-SVN: r232981
This commit is contained in:
Jakub Jelinek 2016-01-29 15:07:40 +01:00 committed by Jakub Jelinek
parent 401116b5a4
commit 26658b7c9e
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2016-01-29 Jakub Jelinek <jakub@redhat.com>
PR target/66137
* gcc.target/i386/pr66137.c: New test.
2016-01-29 Andrew Bennett <andrew.bennett@imgtec.com>
* gcc.target/mips/p5600-bonding.c (dg-options): Force the test to be

View File

@ -0,0 +1,11 @@
/* PR target/66137 */
/* { dg-do compile } */
/* { dg-options "-mavx -O3 -ffixed-ebp" } */
void
foo (char *x, char *y, char *z, int a)
{
int i;
for (i = a; i > 0; i--)
*x++ = *y++ = *z++;
}