Commit ce6e2d90 by Eric Christopher Committed by Eric Christopher

rtl.c: Fix typo.

2003-12-03  Eric Christopher  <echristo@redhat.com>

	* rtl.c: Fix typo.
	* config/mips/mips.h: Ditto. Fix formatting.

From-SVN: r74261
parent 4a423a9f
2003-12-03 Eric Christopher <echristo@redhat.com>
* rtl.c: Fix typo.
* config/mips/mips.h: Ditto. Fix formatting.
2003-12-04 Ben Elliston <bje@wasabisystems.com> 2003-12-04 Ben Elliston <bje@wasabisystems.com>
* future.options: Remove. Move to gnu.org web pages. * future.options: Remove. Move to gnu.org web pages.
......
...@@ -476,7 +476,7 @@ extern const struct mips_cpu_info *mips_tune_info; ...@@ -476,7 +476,7 @@ extern const struct mips_cpu_info *mips_tune_info;
{ \ { \
builtin_define ("_LANGUAGE_OBJECTIVE_C"); \ builtin_define ("_LANGUAGE_OBJECTIVE_C"); \
builtin_define ("__LANGUAGE_OBJECTIVE_C"); \ builtin_define ("__LANGUAGE_OBJECTIVE_C"); \
/* Bizzare, but needed at least for Irix. */ \ /* Bizarre, but needed at least for Irix. */ \
builtin_define_std ("LANGUAGE_C"); \ builtin_define_std ("LANGUAGE_C"); \
builtin_define ("_LANGUAGE_C"); \ builtin_define ("_LANGUAGE_C"); \
} \ } \
...@@ -2230,7 +2230,7 @@ extern enum reg_class mips_char_to_class[256]; ...@@ -2230,7 +2230,7 @@ extern enum reg_class mips_char_to_class[256];
/* 1 if N is a possible register number for a function value. /* 1 if N is a possible register number for a function value.
On the MIPS, R2 R3 and F0 F2 are the only register thus used. On the MIPS, R2 R3 and F0 F2 are the only register thus used.
Currently, R2 and F0 are only implemented here (C has no complex type) */ Currently, R2 and F0 are only implemented here (C has no complex type) */
#define FUNCTION_VALUE_REGNO_P(N) ((N) == GP_RETURN || (N) == FP_RETURN \ #define FUNCTION_VALUE_REGNO_P(N) ((N) == GP_RETURN || (N) == FP_RETURN \
|| (LONG_DOUBLE_TYPE_SIZE == 128 && FP_RETURN != GP_RETURN \ || (LONG_DOUBLE_TYPE_SIZE == 128 && FP_RETURN != GP_RETURN \
...@@ -2317,9 +2317,7 @@ typedef struct mips_args { ...@@ -2317,9 +2317,7 @@ typedef struct mips_args {
/* Initialize a variable CUM of type CUMULATIVE_ARGS /* Initialize a variable CUM of type CUMULATIVE_ARGS
for a call to a function whose data type is FNTYPE. for a call to a function whose data type is FNTYPE.
For a library call, FNTYPE is 0. For a library call, FNTYPE is 0. */
*/
#define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,INDIRECT) \ #define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,INDIRECT) \
init_cumulative_args (&CUM, FNTYPE, LIBNAME) \ init_cumulative_args (&CUM, FNTYPE, LIBNAME) \
......
...@@ -357,7 +357,7 @@ rtx_equal_p (rtx x, rtx y) ...@@ -357,7 +357,7 @@ rtx_equal_p (rtx x, rtx y)
} }
/* Compare the elements. If any pair of corresponding elements /* Compare the elements. If any pair of corresponding elements
fail to match, return 0 for the whole things. */ fail to match, return 0 for the whole thing. */
fmt = GET_RTX_FORMAT (code); fmt = GET_RTX_FORMAT (code);
for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--) for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment