Commit 978d853b authored by Michael Arntzenius's avatar Michael Arntzenius

remove obsolete -c flag for enabling caching

parent 1199a6b2
......@@ -54,7 +54,6 @@ int main(int argc, char** argv) {
llvm::llvm_shutdown_obj Y;
int code;
bool caching = true;
bool force_repl = false;
bool repl = true;
bool stats = false;
......@@ -67,8 +66,6 @@ int main(int argc, char** argv) {
GLOBAL_VERBOSITY = 0;
else if (code == 'v')
GLOBAL_VERBOSITY++;
// else if (code == 'c') // now always enabled
// caching = true;
else if (code == 'd')
SHOW_DISASM = true;
else if (code == 'I')
......
......@@ -123,7 +123,7 @@ def run_test(fn, check_stats, run_memcheck):
r = fn.rjust(FN_JUST_SIZE)
statchecks = []
jit_args = ["-crq"] + EXTRA_JIT_ARGS
jit_args = ["-rq"] + EXTRA_JIT_ARGS
collect_stats = True
expected = "success"
allow_warnings = []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment