Commit 0168b518 by David Malcolm Committed by David Malcolm

Fix jit crash on aarch64

gcc/ChangeLog:
	* config/aarch64/cortex-a57-fma-steering.c
	(aarch64_register_fma_steering): Remove "static" from arguments
	to register_pass.

From-SVN: r233146
parent e0b059b1
2016-02-04 David Malcolm <dmalcolm@redhat.com>
* config/aarch64/cortex-a57-fma-steering.c
(aarch64_register_fma_steering): Remove "static" from arguments
to register_pass.
2016-02-04 Wilco Dijkstra <wdijkstr@arm.com> 2016-02-04 Wilco Dijkstra <wdijkstr@arm.com>
PR target/69619 PR target/69619
......
...@@ -1082,7 +1082,7 @@ aarch64_register_fma_steering () ...@@ -1082,7 +1082,7 @@ aarch64_register_fma_steering ()
{ {
opt_pass *pass_fma_steering = make_pass_fma_steering (g); opt_pass *pass_fma_steering = make_pass_fma_steering (g);
static struct register_pass_info fma_steering_info struct register_pass_info fma_steering_info
= { pass_fma_steering, "rnreg", 1, PASS_POS_INSERT_AFTER }; = { pass_fma_steering, "rnreg", 1, PASS_POS_INSERT_AFTER };
register_pass (&fma_steering_info); register_pass (&fma_steering_info);
......
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