summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--tapsets.cxx1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8bc21e40..24cbbd9f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-13 Frank Ch. Eigler <fche@redhat.com>
+
+ * tapsets.cxx (var_expanding_copy_visitor::visit_target):
+ Transcribe token pointer to synthesized functiondecl.
+
2005-12-12 Josh Stone <joshua.i.stone@intel.com>
* tapset/context.stp
diff --git a/tapsets.cxx b/tapsets.cxx
index bbbee0cf..f8ecf1d7 100644
--- a/tapsets.cxx
+++ b/tapsets.cxx
@@ -2573,6 +2573,7 @@ var_expanding_copy_visitor::visit_target_symbol (target_symbol *e)
// Synthesize a function.
functiondecl *fdecl = new functiondecl;
+ fdecl->tok = e->tok;
embeddedcode *ec = new embeddedcode;
ec->tok = e->tok;
bool lvalue = is_active_lvalue(e);