aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-05-18 08:36:25 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-05-18 08:36:25 -0700
commitbf40b703497fb55299c4552c5ea39ac51621c515 (patch)
treecba1d75e3e4b56af5bf22f5189c7f63724ae5346
parentd738412c91660d961b6296f5ac39ad54a9da75d0 (diff)
parent144065e79ef20c254c68ddf4f1a3a951cd1fed2a (diff)
downloadexternal_qemu-bf40b703497fb55299c4552c5ea39ac51621c515.zip
external_qemu-bf40b703497fb55299c4552c5ea39ac51621c515.tar.gz
external_qemu-bf40b703497fb55299c4552c5ea39ac51621c515.tar.bz2
am 144065e7: Merge change 1789 into donut
Merge commit '144065e79ef20c254c68ddf4f1a3a951cd1fed2a' * commit '144065e79ef20c254c68ddf4f1a3a951cd1fed2a': Remove the dcache from the emulator since we are not tracing loads and stores.
-rw-r--r--vl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/vl.c b/vl.c
index 0659b45..e6a0305 100644
--- a/vl.c
+++ b/vl.c
@@ -9688,9 +9688,13 @@ int main(int argc, char **argv)
#ifdef CONFIG_TRACE
if (trace_filename) {
trace_init(trace_filename);
+#if 0
+ // We don't need the dcache code until we can get load and store tracing
+ // working again.
dcache_init(dcache_size, dcache_ways, dcache_line_size,
dcache_replace_policy, dcache_load_miss_penalty,
dcache_store_miss_penalty);
+#endif
fprintf(stderr, "-- When done tracing, exit the emulator. --\n");
}
#endif