aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Pinski <pinskia@physics.uc.edu>2004-04-21 17:13:58 +0000
committerAndrew Pinski <pinskia@gcc.gnu.org>2004-04-21 10:13:58 -0700
commita031e7819637e549c6f074d5d943112da623bf7b (patch)
tree0f2d8e9a38c47495cb95f975cd09f758614cd59c
parent06a6469a5369dcaba3338024e19deeab3993fdc1 (diff)
downloadgcc-a031e7819637e549c6f074d5d943112da623bf7b.zip
gcc-a031e7819637e549c6f074d5d943112da623bf7b.tar.gz
gcc-a031e7819637e549c6f074d5d943112da623bf7b.tar.bz2
rs6000 (print_operand): Change ifdef of TARGET_MACHO to if TARGET_MACHO.
2004-04-21 Andrew Pinski <pinskia@physics.uc.edu> * config/rs6000/rs6000 (print_operand) ['z']: Change ifdef of TARGET_MACHO to if TARGET_MACHO. From-SVN: r80971
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/rs6000/rs6000.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 550e716..bcb4303 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2004-04-21 Andrew Pinski <pinskia@physics.uc.edu>
+
+ * config/rs6000/rs6000 (print_operand) ['z']:
+ Change ifdef of TARGET_MACHO to if TARGET_MACHO.
+
2004-04-21 Daniel Jacobowitz <drow@mvista.com>
* config.gcc: Support --with-arch=iwmmxt for ARM.
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index c9a5558..7ea3dda 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -9494,7 +9494,7 @@ print_operand (FILE *file, rtx x, int code)
if (TARGET_MACHO)
{
const char *name = XSTR (x, 0);
-#ifdef TARGET_MACHO
+#if TARGET_MACHO
if (machopic_classify_name (name) == MACHOPIC_UNDEFINED_FUNCTION)
name = machopic_stub_name (name);
#endif