aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-02-27 10:49:44 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1994-02-27 10:49:44 -0500
commit0575fe3c3c9d675e3f033ed80a188d304ef73a70 (patch)
tree007d735bd1d9bb679ad0e8c5854688c288ad7abd
parent0a300065c576f5aa2ed8fcbe5cdf301b881b6caa (diff)
downloadgcc-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.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c
index ea5cd6f..1b1ac32 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. */