diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | hash.cxx | 4 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2006-12-21 David Smith <dsmith@redhat.com> + + * hash.cxx (find_hash): Added two more options into the hash that + change the generated C file - '-M' (merge) and '-t' (benchmark + timing). + 2006-12-20 David Smith <dsmith@redhat.com> PR 3519. @@ -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]); |