From 9c66f4e068e743727dfec5acec6547cd18a4030c Mon Sep 17 00:00:00 2001 From: dsmith Date: Thu, 21 Dec 2006 21:41:25 +0000 Subject: 2006-12-21 David Smith * hash.cxx (find_hash): Added two more options into the hash that change the generated C file - '-M' (merge) and '-t' (benchmark timing). --- hash.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'hash.cxx') diff --git a/hash.cxx b/hash.cxx index 3c552f2d..b1440377 100644 --- a/hash.cxx +++ b/hash.cxx @@ -94,7 +94,9 @@ find_hash (systemtap_session& s, const string& script) h.add(s.architecture); // Hash user-specified arguments (that change the generated module). - h.add(s.bulk_mode); + h.add(s.bulk_mode); // '-b' + h.add(s.merge); // '-M' + h.add(s.timing); // '-t' for (unsigned i = 0; i < s.macros.size(); i++) h.add(s.macros[i]); -- cgit