Commit d26ed7fa by Richard Sandiford Committed by Richard Sandiford

microblaze.c (microblaze_classify_unspec): Fix cast syntax.

gcc/
	* config/microblaze/microblaze.c (microblaze_classify_unspec): Fix
	cast syntax.

From-SVN: r227120
parent bfe7ac89
2015-08-24 Richard Sandiford <richard.sandiford@arm.com>
* config/microblaze/microblaze.c (microblaze_classify_unspec): Fix
cast syntax.
2015-08-24 Andrew Pinski <apinski@cavium.com>
* config/aarch64/aarch64-tuning-flags.def: Remove all index to
......
......@@ -661,7 +661,7 @@ microblaze_classify_unspec (struct microblaze_address_info *info, rtx x)
else if (XINT (x, 1) == UNSPEC_TLS)
{
info->type = ADDRESS_TLS;
info->tls_type = tls_reloc INTVAL(XVECEXP(x, 0, 1));
info->tls_type = tls_reloc (INTVAL (XVECEXP (x, 0, 1)));
}
else
{
......
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