Commit 1c652781 by Kyrylo Tkachov Committed by Kyrylo Tkachov

[AArch64] Do not ICE after apologising for -mcmodel=large -fPIC

	* config/aarch64/aarch64.c (initialize_aarch64_code_model): Break
	after -mcmodel=large -fPIC sorry.

From-SVN: r226815
parent 7fd9012e
2015-08-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* config/aarch64/aarch64.c (initialize_aarch64_code_model): Break
after -mcmodel=large -fPIC sorry.
2015-08-12 Richard Biener <rguenther@suse.de>
* tree-ssa-sccvn.c (vn_nary_op_compute_hash): Also canonicalize
......
......@@ -7895,6 +7895,7 @@ initialize_aarch64_code_model (struct gcc_options *opts)
case AARCH64_CMODEL_LARGE:
sorry ("code model %qs with -f%s", "large",
opts->x_flag_pic > 1 ? "PIC" : "pic");
break;
default:
gcc_unreachable ();
}
......
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