From bc6c4e5fb4b8a3ad15eb41ffd65f66a689f39d20 Mon Sep 17 00:00:00 2001 From: fche Date: Thu, 22 Sep 2005 23:05:03 +0000 Subject: * reduce emitted comment noise --- translate.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/translate.cxx b/translate.cxx index b3a4221e..cc1d97bf 100644 --- a/translate.cxx +++ b/translate.cxx @@ -733,9 +733,8 @@ c_unparser::emit_module_init () for (unsigned i=0; iprobes.size(); i++) { - o->newline() << "/* register " << i << " */"; - for (unsigned k=0; kprobes[i]->locations.size(); k++) - o->newline() << "/* " << *session->probes[i]->locations[k] << " */"; + o->newline() << "/* register probe #" << i << ", "; + o->line() << session->probes[i]->locations.size() << " location(s) */"; session->probes[i]->emit_registrations (o, i); o->newline() << "if (unlikely (rc)) {"; -- cgit