summary refs log tree commit diff
path: root/lisc/test/max.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/max.ssa
parent73b7d9b199f0e73821acdde4770995c8db413106 (diff)
downloadroux-ee46ff8dad6782a739fefd176e55a70754787917.tar.gz
cosmetic indentation style fix
Diffstat (limited to 'lisc/test/max.ssa')
-rw-r--r--lisc/test/max.ssa12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisc/test/max.ssa b/lisc/test/max.ssa
index e2a5c87..aa6376e 100644
--- a/lisc/test/max.ssa
+++ b/lisc/test/max.ssa
@@ -6,21 +6,21 @@
 # a output max
 
 function $test {
- @start
- @loop
+@start
+@loop
 	%max =w phi @start -1, @new %byt, @old %max
 	%loc =l phi @start $b,  @new %loc1, @old %loc1
 	%byt =w loadub %loc
 	%loc1 =l add 1, %loc
 	jnz %byt, @iter, @end
- @iter
+@iter
 	%cmp =w csle %max, %byt
 	jnz %cmp, @new, @old
- @new
+@new
 	jmp @loop
- @old
+@old
 	jmp @loop
- @end
+@end
 	storew %max, $a
 	ret
 }