diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-09-10 17:21:44 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-09-10 17:21:44 -0400 |
commit | f76427a2bf80e4451e5e8d0c26b06aca65e4e2c4 (patch) | |
tree | 0c90ae0cf7b3c2758226feab577d6273528b2ef1 /session.h | |
parent | e0c72583f8fb7a61d052c58b8e9c6df0925bc234 (diff) | |
download | systemtap-steved-f76427a2bf80e4451e5e8d0c26b06aca65e4e2c4.tar.gz systemtap-steved-f76427a2bf80e4451e5e8d0c26b06aca65e4e2c4.tar.xz systemtap-steved-f76427a2bf80e4451e5e8d0c26b06aca65e4e2c4.zip |
PR6876: translator speedup for many $vars
Diffstat (limited to 'session.h')
-rw-r--r-- | session.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -131,7 +131,7 @@ struct systemtap_session // resolved globals/functions/probes for the run as a whole std::vector<stapfile*> files; std::vector<vardecl*> globals; - std::vector<functiondecl*> functions; + std::map<std::string,functiondecl*> functions; std::vector<derived_probe*> probes; // see also *_probes groups below std::vector<embeddedcode*> embeds; std::map<std::string, statistic_decl> stat_decls; |