diff options
-rw-r--r-- | testsuite/driver/testlib.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py index 09ab06d469..2e9bb27752 100644 --- a/testsuite/driver/testlib.py +++ b/testsuite/driver/testlib.py @@ -157,9 +157,7 @@ def expect_fail( name, opts ): def no_lint( name, opts ): """Disable Core, STG and Cmm lints. Useful when testing compiler perf.""" - opts.compiler_always_flags = \ - [opt for opt in opts.compiler_always_flags \ - if opt not in ['-dcore-lint', '-dstg-lint', '-dcmm-lint']] + pass def stage1(name, opts): # See Note [Why is there no stage1 setup function?] |