2007-11-26 Frank Ch. Eigler <fche@elastic.org>
* elaborate.cxx (derived_probe ctor): Don't duplicate condition
if it doesn't exist.
+2007-11-26 Frank Ch. Eigler <fche@elastic.org>
+
+ * elaborate.cxx (derived_probe ctor): Don't duplicate condition
+ if it doesn't exist.
+
2007-11-20 Masami Hiramatsu <mhiramat@redhat.com>
PR 4935.
{
if (p)
{
- this->condition = deep_copy_visitor::deep_copy(p->condition);
+ if (p->condition)
+ this->condition = deep_copy_visitor::deep_copy(p->condition);
this->tok = p->tok;
this->privileged = p->privileged;
this->body = deep_copy_visitor::deep_copy(p->body);