From 27145a64232702ec7849272ac6a36b98f7e53f8e Mon Sep 17 00:00:00 2001 From: Joern Rennecke Date: Fri, 31 Dec 2010 14:34:26 +0000 Subject: [PATCH] re PR target/47084 (am33_2.0-linux fails to build) PR target/47084 * config/mn10300/linux.h (PRINT_OPERAND): Update for name changes to mn10300_print_operand / mn10300_print_operand_address. From-SVN: r168378 --- gcc/ChangeLog | 4 ++++ gcc/config/mn10300/linux.h | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ba25312..035e5f9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -42,6 +42,10 @@ ATTRIBUTE_UNUSED to declaration. (rs6000_elf_asm_out_destructor): Likewise. + PR target/47084 + * config/mn10300/linux.h (PRINT_OPERAND): Update for name changes + to mn10300_print_operand / mn10300_print_operand_address. + 2010-12-30 Mingjie Xing * config/mips/mips.h (SHIFT_COUNT_TRUNCATED): Change diff --git a/gcc/config/mn10300/linux.h b/gcc/config/mn10300/linux.h index cfaa0a8..ca0e10a 100644 --- a/gcc/config/mn10300/linux.h +++ b/gcc/config/mn10300/linux.h @@ -56,7 +56,7 @@ extern int mn10300_protect_label; do \ { \ mn10300_protect_label = 1; \ - print_operand ((FILE), (X), (CODE)); \ + mn10300_print_operand ((FILE), (X), (CODE)); \ mn10300_protect_label = 0; \ } \ while (0) @@ -66,7 +66,7 @@ extern int mn10300_protect_label; do \ { \ mn10300_protect_label = 1; \ - print_operand_address ((FILE), (X)); \ + mn10300_print_operand_address ((FILE), (X)); \ mn10300_protect_label = 0; \ } \ while (0) -- 2.7.4