diff options
author | Richard Stallman <rms@gnu.org> | 1993-10-11 01:12:06 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-10-11 01:12:06 +0000 |
commit | 0d69ab6fee5d77a22538c637e5b1d08bd8e08e88 (patch) | |
tree | 0edf3d074bd871224a203d499813550419431da1 | |
parent | a5da0afee5dc899a082c681378ee2b81038e7863 (diff) | |
download | gcc-0d69ab6fee5d77a22538c637e5b1d08bd8e08e88.zip gcc-0d69ab6fee5d77a22538c637e5b1d08bd8e08e88.tar.gz gcc-0d69ab6fee5d77a22538c637e5b1d08bd8e08e88.tar.bz2 |
(emit_stack_save): Cast enum array index to int.
From-SVN: r5717
-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 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 |