diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2006-06-17 17:50:11 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2006-06-17 17:50:11 -0400 |
commit | 306043f62e06e8368733c2ee2a273c1ba5ea80b9 (patch) | |
tree | b7c018a0e8298d937620910ec82dd680a7227611 | |
parent | 8a1298822182c0ca01caddaa539bdb6a53927e57 (diff) | |
download | gem5-306043f62e06e8368733c2ee2a273c1ba5ea80b9.tar.xz |
remove profile.cc
--HG--
extra : convert_revision : ac400789ee0cbd1cd01c28ffd149789dbd954613
-rw-r--r-- | src/SConscript | 1 | ||||
-rw-r--r-- | src/sim/main.cc | 5 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/SConscript b/src/SConscript index 157a911ed..124f88708 100644 --- a/src/SConscript +++ b/src/SConscript @@ -108,7 +108,6 @@ base_sources = Split(''' sim/main.cc python/swig/cc_main_wrap.cc sim/param.cc - sim/profile.cc sim/root.cc sim/serialize.cc sim/sim_events.cc diff --git a/src/sim/main.cc b/src/sim/main.cc index 5a99e15b4..bf844da7f 100644 --- a/src/sim/main.cc +++ b/src/sim/main.cc @@ -427,11 +427,6 @@ finalInit() SimObject::regAllStats(); - // uncomment the following to get PC-based execution-time profile -#ifdef DO_PROFILE - init_profile((char *)&_init, (char *)&_fini); -#endif - // Check to make sure that the stats package is properly initialized Stats::check(); |