diff options
author | Geoffrey Keating <geoffk@apple.com> | 2004-04-08 23:35:34 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2004-04-08 23:35:34 +0000 |
commit | f07e9f0f286a9b3e672044049816555a8f4b548a (patch) | |
tree | aa21286119ebe88af69a459dadcc3392424bbf89 /gcc/explow.c | |
parent | f7b6f250d745be9585229d2134873fb9690fbf2d (diff) | |
download | gcc-f07e9f0f286a9b3e672044049816555a8f4b548a.zip gcc-f07e9f0f286a9b3e672044049816555a8f4b548a.tar.gz gcc-f07e9f0f286a9b3e672044049816555a8f4b548a.tar.bz2 |
* explow.c: Fix typo defining default of PROMOTE_FUNCTION_MODE.
From-SVN: r80530
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index 1629fa8..e6eacdcf 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -800,7 +800,7 @@ copy_to_suggested_reg (rtx x, rtx target, enum machine_mode mode) FOR_CALL is nonzero if this call is promoting args for a call. */ #if defined(PROMOTE_MODE) && !defined(PROMOTE_FUNCTION_MODE) -#define PROMOTE_FUNCTON_MODE PROMOTE_MODE +#define PROMOTE_FUNCTION_MODE PROMOTE_MODE #endif enum machine_mode |