diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/fp-bit.c | 2 | ||||
-rw-r--r-- | gcc/config/rs6000/ppc64-fp.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 97e711c9753..69ec5fd3298 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-08-22 Alan Modra <amodra@bigpond.net.au> + + * config/fp-bit.c: Specify config/ dir for include of fp-bit.h. + * config/rs6000/ppc64-fp.c: Likewise. + 2003-08-22 Kazu Hirata <kazu@cs.umass.edu> * cfgcleanup.c: Fix comment typos. diff --git a/gcc/config/fp-bit.c b/gcc/config/fp-bit.c index 6640f7ad1b4..51c67430535 100644 --- a/gcc/config/fp-bit.c +++ b/gcc/config/fp-bit.c @@ -46,7 +46,7 @@ Boston, MA 02111-1307, USA. */ #include "tconfig.h" #include "coretypes.h" #include "tm.h" -#include "fp-bit.h" +#include "config/fp-bit.h" /* The following macros can be defined to change the behavior of this file: FLOAT: Implement a `float', aka SFmode, fp library. If this is not diff --git a/gcc/config/rs6000/ppc64-fp.c b/gcc/config/rs6000/ppc64-fp.c index 3f6d7cd1bb0..755827fb0b4 100644 --- a/gcc/config/rs6000/ppc64-fp.c +++ b/gcc/config/rs6000/ppc64-fp.c @@ -31,7 +31,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #if defined(__powerpc64__) -#include "fp-bit.h" +#include "config/fp-bit.h" extern DItype __fixdfdi (DFtype); extern DItype __fixsfdi (SFtype); |