mirror of git://gcc.gnu.org/git/gcc.git
microblaze.c (microblaze_classify_unspec): Fix cast syntax.
gcc/ * config/microblaze/microblaze.c (microblaze_classify_unspec): Fix cast syntax. From-SVN: r227120
This commit is contained in:
parent
bfe7ac89a0
commit
d26ed7fa67
|
|
@ -1,3 +1,8 @@
|
||||||
|
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>
|
2015-08-24 Andrew Pinski <apinski@cavium.com>
|
||||||
|
|
||||||
* config/aarch64/aarch64-tuning-flags.def: Remove all index to
|
* 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)
|
else if (XINT (x, 1) == UNSPEC_TLS)
|
||||||
{
|
{
|
||||||
info->type = ADDRESS_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
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue