diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-05-18 08:36:25 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-05-18 08:36:25 -0700 |
commit | bf40b703497fb55299c4552c5ea39ac51621c515 (patch) | |
tree | cba1d75e3e4b56af5bf22f5189c7f63724ae5346 | |
parent | d738412c91660d961b6296f5ac39ad54a9da75d0 (diff) | |
parent | 144065e79ef20c254c68ddf4f1a3a951cd1fed2a (diff) | |
download | external_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.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |