diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-02-24 15:34:58 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-02-24 15:34:58 -0800 |
commit | 372247582585c1dd3f0d280e4e5b49e48efb9799 (patch) | |
tree | 2650219b40ff85864c7bb17c4ff84f70d71e2e5a /tests | |
parent | 17c578e3837405877b9c2052220ffb91b5f47ba2 (diff) |
do not emit direct multiplies of <32 bit in asm, asm only has 32-bit multiply
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/fuzz/csmith_driver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fuzz/csmith_driver.py b/tests/fuzz/csmith_driver.py index 26633494..62524a93 100755 --- a/tests/fuzz/csmith_driver.py +++ b/tests/fuzz/csmith_driver.py @@ -30,7 +30,7 @@ while 1: print 'Tried %d, notes: %s' % (tried, notes) tried += 1 print '1) Generate C' - shared.execute([CSMITH, '--no-volatiles', '--no-math64', '--max-block-depth', '2', '--max-block-size', '2', '--max-expr-complexity', '2', '--max-funcs', '2'], stdout=open(filename + '.c', 'w')) + shared.execute([CSMITH, '--no-volatiles', '--no-math64'], stdout=open(filename + '.c', 'w')) print '2) Compile natively' shared.try_delete(filename) |