summary refs log tree commit diff
path: root/lisc/test/loop.ssa
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-09-14 18:06:29 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-09-15 23:01:33 -0400
commitee46ff8dad6782a739fefd176e55a70754787917 (patch)
tree5b87311740ef4cee7e1d51ad7390030f5281314c /lisc/test/loop.ssa
parent73b7d9b199f0e73821acdde4770995c8db413106 (diff)
downloadroux-ee46ff8dad6782a739fefd176e55a70754787917.tar.gz
cosmetic indentation style fix
Diffstat (limited to 'lisc/test/loop.ssa')
-rw-r--r--lisc/test/loop.ssa6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisc/test/loop.ssa b/lisc/test/loop.ssa
index 831fcd7..06a4bee 100644
--- a/lisc/test/loop.ssa
+++ b/lisc/test/loop.ssa
@@ -2,15 +2,15 @@
 # sums all integers from 100 to 0
 
 function $test {
- @start
+@start
 
- @loop
+@loop
 	%s  =w phi @start 100, @loop %s1
 	%n  =w phi @start   0, @loop %n1
 	%n1 =w sub %n, 1
 	%s1 =w add %s, %n
 	jnz %n1, @loop, @end
 
- @end
+@end
 	ret
 }