diff options
author | Erik Hallnor <ehallnor@umich.edu> | 2003-11-06 18:39:26 -0500 |
---|---|---|
committer | Erik Hallnor <ehallnor@umich.edu> | 2003-11-06 18:39:26 -0500 |
commit | aead4c315b2f52566249a09c13bcee3378f7af32 (patch) | |
tree | 7dae5e814098cac68396bdc2cf6dd5d4c48b15fc /util/rundiff | |
parent | 29474bdf027fe3396e0be2f6acbe2a6b89136bc2 (diff) | |
download | gem5-aead4c315b2f52566249a09c13bcee3378f7af32.tar.xz |
Various fixes to memory code.
cpu/memtest/memtest.cc:
Disable probes until the work in all cases
util/rundiff:
Comment out Algorithm::Diff since its not needed.
--HG--
extra : convert_revision : 40e76ae8926650986a170a0ba6ef331519aceb19
Diffstat (limited to 'util/rundiff')
-rwxr-xr-x | util/rundiff | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/rundiff b/util/rundiff index 4aed9200e..732b84d21 100755 --- a/util/rundiff +++ b/util/rundiff @@ -49,9 +49,9 @@ use strict; # and generally quite adequate algorithm will be used instead. my $use_complexdiff = 0; -if ($use_complexdiff) { - use Algorithm::Diff qw(traverse_sequences); -}; +#if ($use_complexdiff) { +# use Algorithm::Diff qw(traverse_sequences); +#}; my $lookahead_lines = 200; my $precontext_lines = 3; |