Commit d3f062be by Jim Wilson Committed by Jim Wilson

Testcase for FSF GCC bug 79794.

	gcc/testsuite/
	PR middle-end/79794
	* gcc.target/aarch64/pr79794.c: New.

From-SVN: r249612
parent f1857c63
2017-06-23 Jim Wilson <jim.wilson@linaro.org>
PR middle-end/79794
* gcc.target/aarch64/pr79794.c: New.
2017-06-23 Michael Meissner <meissner@linux.vnet.ibm.com>
PR target/80510
......
/* PR middle-end/79794 */
/* { dg-do compile } */
/* { dg-options "-O3" } */
/* { dg-final { scan-assembler-not "umov" } } */
struct node_struct
{
float _Complex gap;
unsigned long long state;
};
struct reg_struct
{
int size;
struct node_struct *node;
};
void
func(int target, struct reg_struct *reg)
{
int i;
for(i=0; i<reg->size; i++)
reg->node[i].state ^= ((unsigned long long) 1 << target);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment