diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-11-27 10:48:06 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-11-27 10:48:06 -0800 |
commit | 7505b73a9bf62d883beaec1dc7346d2f5d8da4b0 (patch) | |
tree | c8397cede5fdf0bcb63a813e36dafd89fe967ee4 | |
parent | c2bdab76780511480d181637700b9749dd5043d8 (diff) |
do not recompile just for dfe in test runner
-rw-r--r-- | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 94629047..52be829c 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -71,7 +71,7 @@ class RunnerCore(unittest.TestCase): else: shutil.copy(ll_file, filename + '.o.ll') - force_recompile = force_recompile or os.stat(filename + '.o.ll').st_size > 50000 # if the file is big, recompile just to get ll_opts + #force_recompile = force_recompile or os.stat(filename + '.o.ll').st_size > 50000 # if the file is big, recompile just to get ll_opts # Recompiling just for dfe in ll_opts is too costly if Building.LLVM_OPTS or force_recompile or build_ll_hook: Building.ll_opts(filename) |