summaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-23 12:05:38 +0000
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-23 12:05:38 +0000
commit2c64e1a1654e517d649af553c5d100983f76e85a (patch)
tree57ba86ec8f6a73bd6aafd40db3b51f242e817215 /gcc/toplev.c
parentf4804cfdba9006b1ff6e58b8ce208b92c0237b9a (diff)
downloadgcc-2c64e1a1654e517d649af553c5d100983f76e85a.tar.gz
* c-lex.c (indent_level): Remove.
(cb_file_change, c_lex): Remove indent level handling. * c-lex.h (indent_level): Remove. * input.h (struct file_stack): Remove indent_level. * toplev.c (push_srcloc): Remove indent_level handling. cp: * spew.c (yyungetc, snarf_block): Remove indent_level handling. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53786 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r--gcc/toplev.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index f465adc1d44..fc4f658c62b 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -2020,7 +2020,6 @@ push_srcloc (file, line)
fs = (struct file_stack *) xmalloc (sizeof (struct file_stack));
fs->name = input_filename = file;
fs->line = lineno = line;
- fs->indent_level = 0;
fs->next = input_file_stack;
input_file_stack = fs;
input_file_stack_tick++;