diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-03 15:50:22 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-03 15:50:22 -0500 |
commit | cab84cb96b04852f61e2fe1fd0c0ed6ec9fdd0ea (patch) | |
tree | ddece510fe5f226479225acccc4b03b43a2f0e58 | |
parent | 45b6017a6122024f48798606578b78b0cb55d9ee (diff) | |
download | roux-cab84cb96b04852f61e2fe1fd0c0ed6ec9fdd0ea.tar.gz |
fix the double test
-rw-r--r-- | lisc/test/double.ssa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisc/test/double.ssa b/lisc/test/double.ssa index 658a7a9..c91583e 100644 --- a/lisc/test/double.ssa +++ b/lisc/test/double.ssa @@ -1,8 +1,8 @@ function $test() { @start - %x1 =d copy `3e-1 - %x2 =d sub %x1, `0.2 - %x3 =d sub %x2, `0.1 + %x1 =d copy `0.1 + %x2 =d add `0.2, %x1 + %x3 =d sub %x2, `0.3 @loop %x4 =d phi @start %x3, @loop %x5 |