diff options
author | Geoffrey Keating <geoffk@apple.com> | 2006-09-29 01:21:14 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2006-09-29 01:21:14 +0000 |
commit | 67796c1fc2f5fa0e7abcb4083d1f377c9d017a48 (patch) | |
tree | b746095abcf03348396be5703c1261a17d9da795 /gcc/config/rs6000/t-darwin | |
parent | 91cd72c935b9acf4124c2aae51890cc24a4d36f8 (diff) | |
download | gcc-67796c1fc2f5fa0e7abcb4083d1f377c9d017a48.zip gcc-67796c1fc2f5fa0e7abcb4083d1f377c9d017a48.tar.gz gcc-67796c1fc2f5fa0e7abcb4083d1f377c9d017a48.tar.bz2 |
re PR target/28617 (___divti3 and ___umodti3 undefined for -m64 on powerpc-apple-darwin8)
PR target/28617
* config/rs6000/rs6000.h [IN_LIBGCC2] (TARGET_POWERPC64): Define
to 1 when __ppc64__ is defined.
* config/rs6000/t-darwin (LIB2FUNCS_EXTRA): Add ppc64-fp.c and
darwin-64.c.
* config/rs6000/ppc64-fp.c: Also compile when __ppc64__ is defined.
From-SVN: r117296
Diffstat (limited to 'gcc/config/rs6000/t-darwin')
-rw-r--r-- | gcc/config/rs6000/t-darwin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/rs6000/t-darwin b/gcc/config/rs6000/t-darwin index 3f20775..52c3e99 100644 --- a/gcc/config/rs6000/t-darwin +++ b/gcc/config/rs6000/t-darwin @@ -1,4 +1,6 @@ LIB2FUNCS_EXTRA = $(srcdir)/config/rs6000/darwin-tramp.asm \ + $(srcdir)/config/rs6000/ppc64-fp.c \ + $(srcdir)/config/darwin-64.c \ $(srcdir)/config/rs6000/darwin-ldouble.c LIB2FUNCS_STATIC_EXTRA = \ |