aboutsummaryrefslogtreecommitdiff
path: root/gcc/explow.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2002-06-03 01:13:17 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-06-03 01:13:17 +0000
commit0fb7aedacd5042be3ac70777f231a96d895d9aa5 (patch)
treef3cfd74f5103be9c0bd0fb3b4c386285c78a9a5c /gcc/explow.c
parent1c8ec18b71dd89b6c61b9211095775de417bafe8 (diff)
downloadgcc-0fb7aedacd5042be3ac70777f231a96d895d9aa5.zip
gcc-0fb7aedacd5042be3ac70777f231a96d895d9aa5.tar.gz
gcc-0fb7aedacd5042be3ac70777f231a96d895d9aa5.tar.bz2
emit-rtl.c: Likewise.
* emit-rtl.c: Likewise. * errors.h: Likewise. * except.c: Likewise. * explow.c: Likewise. * expmed.c: Likewise. * expr.c: Likewise. * expr.h: Likewise. From-SVN: r54197
Diffstat (limited to 'gcc/explow.c')
-rw-r--r--gcc/explow.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/explow.c b/gcc/explow.c
index 7a770ee..fb1c2a0 100644
--- a/gcc/explow.c
+++ b/gcc/explow.c
@@ -391,7 +391,7 @@ convert_memory_address (to_mode, x)
case CONST:
if (POINTERS_EXTEND_UNSIGNED >= 0)
- return gen_rtx_CONST (to_mode,
+ return gen_rtx_CONST (to_mode,
convert_memory_address (to_mode, XEXP (x, 0)));
break;
@@ -1375,7 +1375,7 @@ allocate_dynamic_stack_space (size, target, known_align)
#ifdef SETJMP_VIA_SAVE_AREA
if (setjmpless_size != NULL_RTX)
{
- rtx note_target = get_last_insn ();
+ rtx note_target = get_last_insn ();
REG_NOTES (note_target)
= gen_rtx_EXPR_LIST (REG_SAVE_AREA, setjmpless_size,
@@ -1620,17 +1620,17 @@ hard_function_value (valtype, func, outgoing)
will match and we will abort later in this function. */
for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
- tmpmode != VOIDmode;
- tmpmode = GET_MODE_WIDER_MODE (tmpmode))
- {
- /* Have we found a large enough mode? */
- if (GET_MODE_SIZE (tmpmode) >= bytes)
- break;
- }
+ tmpmode != VOIDmode;
+ tmpmode = GET_MODE_WIDER_MODE (tmpmode))
+ {
+ /* Have we found a large enough mode? */
+ if (GET_MODE_SIZE (tmpmode) >= bytes)
+ break;
+ }
/* No suitable mode found. */
if (tmpmode == VOIDmode)
- abort ();
+ abort ();
PUT_MODE (val, tmpmode);
}