diff options
author | Franz Sirl <Franz.Sirl-kernel@lauterbach.com> | 2001-08-11 21:27:05 +0000 |
---|---|---|
committer | Franz Sirl <sirl@gcc.gnu.org> | 2001-08-11 21:27:05 +0000 |
commit | d0101753fed46bc4a9d2bbcb1dabd591ad05f384 (patch) | |
tree | 67918d100825ea7cb7c53b48d86ccebee6bf7688 | |
parent | 994fe6604bda9582b9ccc58f105f553dfb4b792a (diff) | |
download | gcc-d0101753fed46bc4a9d2bbcb1dabd591ad05f384.zip gcc-d0101753fed46bc4a9d2bbcb1dabd591ad05f384.tar.gz gcc-d0101753fed46bc4a9d2bbcb1dabd591ad05f384.tar.bz2 |
rs6000.c: Include integrate.h to silence warning.
2001-08-11 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* config/rs6000/rs6000.c: Include integrate.h to silence warning.
(rs6000_elf_section_type_flags): Actually return a value.
From-SVN: r44812
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 70e5228..28ff4d9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-11 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> + + * config/rs6000/rs6000.c: Include integrate.h to silence warning. + (rs6000_elf_section_type_flags): Actually return a value. + 2001-08-11 Ulrich Weigand <uweigand@de.ibm.com> * s390.c, s390.h, s390.md, s390-protos.h, linux.h, t-linux: diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 96ac5c7..783f8e1 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -38,6 +38,7 @@ Boston, MA 02111-1307, USA. */ #include "function.h" #include "output.h" #include "basic-block.h" +#include "integrate.h" #include "toplev.h" #include "ggc.h" #include "hashtab.h" @@ -8705,6 +8706,8 @@ rs6000_elf_section_type_flags (decl, name, reloc) /* Solaris doesn't like @nobits, and gas can handle .sbss without it. */ flags &= ~SECTION_BSS; + + return flags; } #endif |