Commit bd6e6e0a by Martin Jambor Committed by Martin Jambor

Fix ipa-clone-3.c on some targets

2020-01-10  Martin Jambor  <mjambor@suse.cz>

	* gcc.dg/ipa/ipa-clone-3.c: Replace struct initializer with
	piecemeal initialization.

From-SVN: r280105
parent 74d121b3
2020-01-10 Martin Jambor <mjambor@suse.cz>
* gcc.dg/ipa/ipa-clone-3.c: Replace struct initializer with
piecemeal initialization.
2020-01-10 Richard Sandiford <richard.sandiford@arm.com>
* gcc.target/aarch64/sve/index_1_run.c: Require aarch64_sve256_hw
......
......@@ -34,8 +34,10 @@ int recur_fn (struct V * __restrict v)
int main ()
{
struct V v = {1, 3};
struct V v;
v.f0 = 1;
v.f1 = 3;
return recur_fn (&v);
}
......
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