diff options
author | H.J. Lu <hjl@gnu.org> | 1998-06-19 21:49:26 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-06-19 15:49:26 -0600 |
commit | f5a8bfff501bf96917cd1b94325660430b9e8f27 (patch) | |
tree | cdb3a75be627adc4c6a6cd610a576506ffe8563f | |
parent | 3ab6dd7c85e713df75ffb890b72d332cce9576d5 (diff) | |
download | gcc-f5a8bfff501bf96917cd1b94325660430b9e8f27.zip gcc-f5a8bfff501bf96917cd1b94325660430b9e8f27.tar.gz gcc-f5a8bfff501bf96917cd1b94325660430b9e8f27.tar.bz2 |
c-typeck.c (c_expand_asm_operands): Use proper values when calling expand_expr..
* c-typeck.c (c_expand_asm_operands): Use proper values when calling
expand_expr..
From-SVN: r20605
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/c-typeck.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3d797f8..f0daa64 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ Fri Jun 19 20:38:34 1998 H.J. Lu (hjl@gnu.org) + * c-typeck.c (c_expand_asm_operands): Use proper values when calling + expand_expr.. + * c-lex.c (yyprint): Add prototype. (check_newline, build_objc_string): Remove declaration. diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index f8f0705..ea2fea8 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -6862,7 +6862,7 @@ c_expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line) if (o[i] != TREE_VALUE (tail)) { expand_expr (build_modify_expr (o[i], NOP_EXPR, TREE_VALUE (tail)), - 0, VOIDmode, 0); + NULL_RTX, VOIDmode, EXPAND_NORMAL); free_temp_slots (); } /* Detect modification of read-only values. |