X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Flanghooks.c;h=d7ed7505300790e6dd892944ba01cae0844cc1ef;hb=29f9683a5f2242786773eaa8f066001a39f18c82;hp=94e08e6f8cbeec57358bc7edccfc1dd67e22831b;hpb=a53ff4c19b10f7e985c30814a913a11de1e553e6;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/langhooks.c b/gcc/langhooks.c index 94e08e6f8cb..d7ed7505300 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -16,8 +16,8 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING. If not, write to -the Free Software Foundation, 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ +the Free Software Foundation, 51 Franklin Street, Fifth Floor, +Boston, MA 02110-1301, USA. */ #include "config.h" #include "system.h" @@ -478,10 +478,10 @@ write_global_declarations (void) vec[len - i - 1] = decl; wrapup_global_declarations (vec, len); - check_global_declarations (vec, len); + emit_debug_global_declarations (vec, len); - /* Clean up. */ + /* Clean up. */ free (vec); } @@ -543,3 +543,10 @@ lhd_to_target_charset (HOST_WIDE_INT c) { return c; } + +tree +lhd_expr_to_decl (tree expr, bool *tc ATTRIBUTE_UNUSED, + bool *ti ATTRIBUTE_UNUSED, bool *se ATTRIBUTE_UNUSED) +{ + return expr; +}