Really add the test this time...

testsuite/
	* gcc.target/aarch64/test_frame_17.c: New test.

From-SVN: r241421
This commit is contained in:
Wilco Dijkstra 2016-10-21 17:27:15 +00:00 committed by Wilco Dijkstra
parent 5be6b295d0
commit c82bc7edda
2 changed files with 25 additions and 0 deletions

View file

@ -2,6 +2,10 @@
* gcc.target/aarch64/test_frame_17.c: New test.
2016-10-21 Wilco Dijkstra <wdijkstr@arm.com>
* gcc.target/aarch64/test_frame_17.c: New test.
2016-10-21 Andris Pavenis <andris.pavenis@iki.fi>
PR preprocessor/71681

View file

@ -0,0 +1,21 @@
/* { dg-do compile } */
/* { dg-options "-O2 --save-temps" } */
/* Test reuse of stack adjustment temporaries. */
void foo ();
int reuse_mov (int i)
{
int arr[1025];
return arr[i];
}
int no_reuse_mov (int i)
{
int arr[1025];
foo ();
return arr[i];
}
/* { dg-final { scan-assembler-times "mov\tx16, \[0-9\]+" 3 } } */