diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2003-10-19 17:30:26 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2003-10-19 17:30:26 -0700 |
commit | f951b00d89c716906069160ab21a6d4b6f7e4d6f (patch) | |
tree | 20b9ec386e1fc321d900f4c296bf5a2572e9f290 /base/inifile.cc | |
parent | 83d32482dc126d028399ca6701642047f28276dd (diff) | |
download | gem5-f951b00d89c716906069160ab21a6d4b6f7e4d6f.tar.xz |
Get rid of obsolete code, most of it '#if 0'ed anyway.
Mostly vestiges of Dave's long-gone instruction prefetching stuff.
arch/alpha/isa_traits.hh:
Delete unused extractInstructionPrefetchTarget().
base/inifile.cc:
Delete '#if 0' code
cpu/base_cpu.hh:
Delete unused filterThisInstructionPrefetch() function.
cpu/exetrace.hh:
Delete '#if 0' code (obsolete flags).
--HG--
extra : convert_revision : c8317f56ba0a0e568daa785825ee938584987bed
Diffstat (limited to 'base/inifile.cc')
-rw-r--r-- | base/inifile.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/base/inifile.cc b/base/inifile.cc index 92d88c09b..d5436fba8 100644 --- a/base/inifile.cc +++ b/base/inifile.cc @@ -400,16 +400,9 @@ IniFile::printUnreferenced() } } else { -#if 0 - if (section->findEntry("unref_entries_ok") == NULL) { - bool unrefEntries = section->printUnreferenced(sectionName); - unref = unref || unrefEntries; - } -#else if (section->printUnreferenced(sectionName)) { unref = true; } -#endif } } |