From e3981aabf2789a22086f81899a1bf8e8d090b020 Mon Sep 17 00:00:00 2001 From: David Edelsohn Date: Wed, 15 Jan 2003 16:08:49 +0000 Subject: [PATCH] rs6000.c (rs6000_gen_section_name): Do not include file extension in section name. * config/rs6000/rs6000.c (rs6000_gen_section_name): Do not include file extension in section name. From-SVN: r61334 --- gcc/ChangeLog | 5 +++++ gcc/config/rs6000/rs6000.c | 3 +++ 2 files changed, 8 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e9c5d2cab64a..ec32d195f509 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-01-15 David Edelsohn + + * config/rs6000/rs6000.c (rs6000_gen_section_name): Do not include + file extension in section name. + 2003-01-15 Richard Earnshaw * flow.c (find_auto_inc): Also try to generate a PRE_MODIFY with diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index fdf73ac57065..03a4b6b57425 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -1681,6 +1681,8 @@ mask64_operand (op, mode) /* Find the transition, and check that all bits above are 1's. */ lsb = c & -c; + + /* Match if all the bits above are 1's (or c is zero). */ return c == -lsb; } return 0; @@ -12008,6 +12010,7 @@ rs6000_gen_section_name (buf, filename, section_desc) { strcpy (p, section_desc); p += strlen (section_desc); + break; } else if (ISALNUM (*q)) -- 2.43.5