From 5e309481a22d06f4565cb3cb751d0679db0595a7 Mon Sep 17 00:00:00 2001 From: fche Date: Sun, 21 Aug 2005 12:11:41 +0000 Subject: 2005-08-21 Frank Ch. Eigler PR systemtap/1195, systemtap/1193 * elaborate.cxx (alias_expansion_builder): Set new block token. * parse.cxx (parse_symbol): Set new target_symbol token. * runtest.sh: Store more pertinent failure data. * tapsets.cxx (emit_probe_entries): Rewrite error-handling path. * translate.cxx (emit_common_header): Goodbye errorcount, hello last_error & last_stmt. (c_unparser::visit_statement): New "header" for all other stmts. (c_assignop, visit_binary_expression): Adapt to last_error. * tapset/builtin_logging.stp: Adapt to last_error. 2005-08-21 Frank Ch. Eigler * arith.c (*): Adapt to last_error context variable. --- parse.cxx | 1 + 1 file changed, 1 insertion(+) (limited to 'parse.cxx') diff --git a/parse.cxx b/parse.cxx index 15f2b0f1..5b25a9c0 100644 --- a/parse.cxx +++ b/parse.cxx @@ -1621,6 +1621,7 @@ parser::parse_symbol () { // target_symbol time target_symbol *tsym = new target_symbol; + tsym->tok = t; tsym->base_name = name; while (true) { -- cgit