summaryrefslogtreecommitdiffstats
path: root/translate.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'translate.cxx')
-rw-r--r--translate.cxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/translate.cxx b/translate.cxx
index 88b6ca4d..2dd144db 100644
--- a/translate.cxx
+++ b/translate.cxx
@@ -3785,7 +3785,12 @@ translate_pass (systemtap_session& s)
s.op->newline() << "#define STP_NUM_STRINGS 1";
if (s.bulk_mode)
- s.op->newline() << "#define STP_RELAYFS";
+ {
+ s.op->newline() << "#define STP_RELAYFS";
+
+ if (s.merge)
+ s.op->newline() << "#define STP_RELAYFS_MERGE";
+ }
if (s.timing)
s.op->newline() << "#define STP_TIMING" << " " << s.timing ;