diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-02-27 10:49:44 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-02-27 10:49:44 -0500 |
commit | 0575fe3c3c9d675e3f033ed80a188d304ef73a70 (patch) | |
tree | 007d735bd1d9bb679ad0e8c5854688c288ad7abd | |
parent | 0a300065c576f5aa2ed8fcbe5cdf301b881b6caa (diff) | |
download | gcc-0575fe3c3c9d675e3f033ed80a188d304ef73a70.zip gcc-0575fe3c3c9d675e3f033ed80a188d304ef73a70.tar.gz gcc-0575fe3c3c9d675e3f033ed80a188d304ef73a70.tar.bz2 |
(expand_start_bindings): Properly set NOTE if bytecode.
From-SVN: r6646
-rw-r--r-- | gcc/stmt.c | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -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. */ |