summaryrefslogtreecommitdiffstats
path: root/staptree.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'staptree.cxx')
-rw-r--r--staptree.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/staptree.cxx b/staptree.cxx
index 778691f4..39f5580e 100644
--- a/staptree.cxx
+++ b/staptree.cxx
@@ -930,6 +930,13 @@ void probe::print (ostream& o) const
void probe::printsig (ostream& o) const
{
+ const probe_alias *alias = get_alias ();
+ if (alias)
+ {
+ alias->printsig (o);
+ return;
+ }
+
for (unsigned i=0; i<locations.size(); i++)
{
if (i > 0) o << ",";