diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-15 15:58:48 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-15 16:34:16 -0500 |
commit | b2fa33c32d5dbf968be838036d21cfe1ca002ebf (patch) | |
tree | 746231ec03bd0b048e66fdd78799af194acaa46c /lisc | |
parent | 53a3c3c2ddc9bc87fb64cdffb3aab737e092ea42 (diff) | |
download | roux-b2fa33c32d5dbf968be838036d21cfe1ca002ebf.tar.gz |
uniformize notations in mandelbrot test
Diffstat (limited to 'lisc')
-rw-r--r-- | lisc/test/mandel.ssa | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisc/test/mandel.ssa b/lisc/test/mandel.ssa index 8229fae..ca3f647 100644 --- a/lisc/test/mandel.ssa +++ b/lisc/test/mandel.ssa @@ -52,12 +52,12 @@ function w $main() { jmp @loopx1 @loopx1 %x1 =d add %x, d_0.032 - %cmp1 =w cgtd %x1, d_1.0 + %cmp1 =w cgtd %x1, d_1 jnz %cmp1, @loopy1, @loopx @loopy1 %r2 =w call $putchar(w 10) # '\n' %y1 =d add %y, d_0.032 - %cmp2 =w cgtd %y1, d_1.0 + %cmp2 =w cgtd %y1, d_1 jnz %cmp2, @ret, @loopy @ret ret 0 |