diff options
author | David Robillard <d@drobilla.net> | 2010-12-31 22:22:48 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-12-31 22:22:48 +0000 |
commit | 7ad22167dcae1c37c0e15173e60580064a09808d (patch) | |
tree | ec2e8188b6502df0ae1a27c66b193c25cdd49566 /test | |
parent | dcc62eca07aded6b3a07d9718139069ec8641401 (diff) | |
download | resp-7ad22167dcae1c37c0e15173e60580064a09808d.tar.gz resp-7ad22167dcae1c37c0e15173e60580064a09808d.tar.bz2 resp-7ad22167dcae1c37c0e15173e60580064a09808d.zip |
Use standard LLVM optimization passes, and optimize entire module (much more aggressive optimization than previous code).
git-svn-id: http://svn.drobilla.net/resp/resp@398 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'test')
-rw-r--r-- | test/ack.resp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ack.resp b/test/ack.resp index 76fb397..3d9544b 100644 --- a/test/ack.resp +++ b/test/ack.resp @@ -3,5 +3,5 @@ (= 0 n) (ack (- m 1) 1) (ack (- m 1) (ack m (- n 1))))) -(ack 3 10) +(ack 3 12) |