aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-11-26 14:25:22 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1995-11-26 14:25:22 -0500
commit43f51b7fb5949c678877eafbfde514d60715c760 (patch)
tree51116490cf01d3780efe86ec5be084ddf87963c5
parent897746d889bdefe3a5cb5613cb271fe668741865 (diff)
downloadgcc-43f51b7fb5949c678877eafbfde514d60715c760.zip
gcc-43f51b7fb5949c678877eafbfde514d60715c760.tar.gz
gcc-43f51b7fb5949c678877eafbfde514d60715c760.tar.bz2
(FUNCTION_VALUE): Deleted; incorrect.
From-SVN: r10597
-rw-r--r--gcc/config/m68k/atari.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/gcc/config/m68k/atari.h b/gcc/config/m68k/atari.h
index b08ff45..da0a803 100644
--- a/gcc/config/m68k/atari.h
+++ b/gcc/config/m68k/atari.h
@@ -1,6 +1,6 @@
/* Definitions of target machine for GNU compiler.
Atari TT ASV version.
- Copyright (C) 1994 Free Software Foundation, Inc.
+ Copyright (C) 1994, 1995 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -104,16 +104,3 @@ int switch_table_difference_label_flag;
asm_fprintf (FILE, "%s%%%d:\n", PREFIX, NUM); \
else \
asm_fprintf (FILE, "%0L%s%d:\n", PREFIX, NUM)
-
-/* Define how to generate (in the callee) the output value of a function
- and how to find (in the caller) the value returned by a function. VALTYPE
- is the data type of the value (as a tree). If the precise function being
- called is known, FUNC is its FUNCTION_DECL; otherwise, FUNC is 0.
- For the Atari generate the result in d0 or fp0 as appropriate. */
-
-#undef FUNCTION_VALUE
-#define FUNCTION_VALUE(VALTYPE, FUNC) \
-(TREE_CODE (VALTYPE) == REAL_TYPE && TARGET_68881 \
- ? gen_rtx (REG, TYPE_MODE (VALTYPE), 16) \
- : gen_rtx (REG, TYPE_MODE (VALTYPE), 0))
-