rs6000.c (uses_TOC): Wrap #if TARGET_ELF around it.

2004-01-15  Andrew Pinski  <apinski@apple.com>

        * config/rs6000/rs6000.c (uses_TOC): Wrap #if TARGET_ELF
        around it.

From-SVN: r75940
This commit is contained in:
Andrew Pinski 2004-01-15 19:37:24 +00:00 committed by Andrew Pinski
parent 2913770f6f
commit c954844a8b
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-01-15 Andrew Pinski <apinski@apple.com>
* config/rs6000/rs6000.c (uses_TOC): Wrap #if TARGET_ELF
around it.
2004-01-15 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c (h8300_return_in_memory): New.

View File

@ -11140,7 +11140,7 @@ get_TOC_alias_set (void)
/* This returns nonzero if the current function uses the TOC. This is
determined by the presence of (use (unspec ... UNSPEC_TOC)), which
is generated by the ABI_V4 load_toc_* patterns. */
#if TARGET_ELF
static int
uses_TOC (void)
{
@ -11167,6 +11167,7 @@ uses_TOC (void)
}
return 0;
}
#endif
rtx
create_TOC_reference (rtx symbol)