From: Richard Kenner Date: Sun, 27 Feb 1994 15:49:44 +0000 (-0500) Subject: (expand_start_bindings): Properly set NOTE if bytecode. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0575fe3c3c9d675e3f033ed80a188d304ef73a70;p=gcc.git (expand_start_bindings): Properly set NOTE if bytecode. From-SVN: r6646 --- diff --git a/gcc/stmt.c b/gcc/stmt.c index ea5cd6ffc78..1b1ac32cd59 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -1,5 +1,5 @@ /* Expands front end tree to back end RTL for GNU C-Compiler - Copyright (C) 1987, 1988, 1989, 1992, 1993 Free Software Foundation, Inc. + Copyright (C) 1987, 88, 89, 92, 93, 1994 Free Software Foundation, Inc. This file is part of GNU CC. @@ -2995,10 +2995,7 @@ expand_start_bindings (exit_flag) int exit_flag; { struct nesting *thisblock = ALLOC_NESTING (); - rtx note; - - if (!output_bytecode) - note = emit_note (NULL_PTR, NOTE_INSN_BLOCK_BEG); + rtx note = output_bytecode ? 0 : emit_note (NULL_PTR, NOTE_INSN_BLOCK_BEG); /* Make an entry on block_stack for the block we are entering. */