Fixed a test that could not work because of shadowing in hand-optimized code.

original commit: 5d86813267521e3191b91e884418ac39bdb3a8e2
This commit is contained in:
Vincent St-Amour 2010-07-23 17:51:36 -04:00
parent 56fde8109f
commit 27fe7f732f

View File

@ -4,5 +4,5 @@
(let* ((t1 (+ 1.0+2.0i 2.0+4.0i))
(t2 (- t1 3.0+6.0i))
(t3 (- t1 4.0+8.0i)))
(t3 4.0+8.0i))
(+ t2 t3))