mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-08 10:50:47 +08:00
fix building for alpha-dec-vms
gcc/ * config/alpha/alpha.c (alpha_use_linkage): Change type of slot to alpha_links **. (alpha_write_one_linkage): Correct typo. From-SVN: r221921
This commit is contained in:
parent
5d22575b1b
commit
a6330e856f
@ -1,3 +1,9 @@
|
||||
2015-03-27 Trevor Saunders <tbsaunde@tbsaunde.org>
|
||||
|
||||
* config/alpha/alpha.c (alpha_use_linkage): Change type of slot to
|
||||
alpha_links **.
|
||||
(alpha_write_one_linkage): Correct typo.
|
||||
|
||||
2015-04-08 Ilya Enkovich <ilya.enkovich@intel.com>
|
||||
|
||||
* ipa-comdats.c (propagate_comdat_group): Walk through thunks.
|
||||
|
@ -9665,7 +9665,7 @@ alpha_use_linkage (rtx func, bool lflag, bool rflag)
|
||||
if (cfun->machine->links)
|
||||
{
|
||||
/* Is this name already defined? */
|
||||
alpha_links *slot = cfun->machine->links->get (name);
|
||||
alpha_links **slot = cfun->machine->links->get (name);
|
||||
if (slot)
|
||||
al = *slot;
|
||||
}
|
||||
@ -9711,7 +9711,7 @@ alpha_use_linkage (rtx func, bool lflag, bool rflag)
|
||||
}
|
||||
|
||||
static int
|
||||
alpha_write_one_linkage (const char *name, alpha_links *link, FILE *steam)
|
||||
alpha_write_one_linkage (const char *name, alpha_links *link, FILE *stream)
|
||||
{
|
||||
ASM_OUTPUT_INTERNAL_LABEL (stream, XSTR (link->linkage, 0));
|
||||
if (link->rkind == KIND_CODEADDR)
|
||||
|
Loading…
x
Reference in New Issue
Block a user