aboutsummaryrefslogtreecommitdiff
path: root/gcc/explow.c
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-10-11 01:12:06 +0000
committerRichard Stallman <rms@gnu.org>1993-10-11 01:12:06 +0000
commit0d69ab6fee5d77a22538c637e5b1d08bd8e08e88 (patch)
tree0edf3d074bd871224a203d499813550419431da1 /gcc/explow.c
parenta5da0afee5dc899a082c681378ee2b81038e7863 (diff)
downloadgcc-0d69ab6fee5d77a22538c637e5b1d08bd8e08e88.zip
gcc-0d69ab6fee5d77a22538c637e5b1d08bd8e08e88.tar.gz
gcc-0d69ab6fee5d77a22538c637e5b1d08bd8e08e88.tar.bz2
(emit_stack_save): Cast enum array index to int.
From-SVN: r5717
Diffstat (limited to 'gcc/explow.c')
-rw-r--r--gcc/explow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/explow.c b/gcc/explow.c
index 86726c9..7133815 100644
--- a/gcc/explow.c
+++ b/gcc/explow.c
@@ -732,7 +732,7 @@ emit_stack_save (save_level, psave, after)
if (HAVE_save_stack_nonlocal)
{
fcn = gen_save_stack_nonlocal;
- mode = insn_operand_mode[CODE_FOR_save_stack_nonlocal][0];
+ mode = insn_operand_mode[(int) CODE_FOR_save_stack_nonlocal][0];
}
break;
#endif