diff options
author | Richard Stallman <rms@gnu.org> | 1992-06-24 02:53:36 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-06-24 02:53:36 +0000 |
commit | b36d7dd7b4d375ae77e50edc3a78add4e49e0e0f (patch) | |
tree | c7a5b6e276da7e45c3f5b9e3805958a9bdeb5f35 /gcc | |
parent | cac18c305427407cb71d68bb6a6c8147d85ba883 (diff) | |
download | gcc-b36d7dd7b4d375ae77e50edc3a78add4e49e0e0f.zip gcc-b36d7dd7b4d375ae77e50edc3a78add4e49e0e0f.tar.gz gcc-b36d7dd7b4d375ae77e50edc3a78add4e49e0e0f.tar.bz2 |
*** empty log message ***
From-SVN: r1255
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/reload1.c | 2 | ||||
-rw-r--r-- | gcc/xcoffout.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index 4cf074c..c68473d 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -5548,7 +5548,7 @@ gen_input_reload (reloadreg, in, before_insn) It might be better not to actually emit the insn unless it is valid, but we need to pass the insn as an operand to `recog' and - `insn_extract'and it is simpler to emit and then delete the insn if + `insn_extract' and it is simpler to emit and then delete the insn if not valid than to dummy things up. */ rtx op0, op1, tem, insn; diff --git a/gcc/xcoffout.c b/gcc/xcoffout.c index 6e7c50f..1b3c4e3 100644 --- a/gcc/xcoffout.c +++ b/gcc/xcoffout.c @@ -415,7 +415,7 @@ xcoffout_declare_function (file, decl, name) { if (name[i] == '[') { - n = alloca (i + 1); + n = (char *) alloca (i + 1); strncpy (n, name, i); n[i] = '\0'; break; |