diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2018-05-27 10:26:43 +0200 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2018-10-26 13:31:07 +0100 |
commit | 0a7963e0dd119285b9730473ba417d181583ad0a (patch) | |
tree | 523088dae85f3cb34cd88ebc9213c8bc66d27d15 /test/lit.cfg | |
parent | 1f1569510990a3330b6eb8e3499198294964a88e (diff) | |
download | klee-0a7963e0dd119285b9730473ba417d181583ad0a.tar.gz |
llvm5: test, add -disable-O0-optnone to -O0
Otherwise optimizations done in klee won't have any effect. Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Diffstat (limited to 'test/lit.cfg')
-rw-r--r-- | test/lit.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 0bbadafb..a9982150 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -84,7 +84,7 @@ if config.test_exec_root is None: # Add substitutions from lit.site.cfg -subs = [ 'llvmgcc', 'llvmgxx', 'cc', 'cxx'] +subs = [ 'llvmgcc', 'llvmgxx', 'cc', 'cxx', 'O0opt' ] for name in subs: value = getattr(config, name, None) if value == None: |