summary refs log tree commit diff
path: root/lisc/test/live.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/live.ssa
parent73b7d9b199f0e73821acdde4770995c8db413106 (diff)
downloadroux-ee46ff8dad6782a739fefd176e55a70754787917.tar.gz
cosmetic indentation style fix
Diffstat (limited to 'lisc/test/live.ssa')
-rw-r--r--lisc/test/live.ssa10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisc/test/live.ssa b/lisc/test/live.ssa
index 03e95e8..1e7fd2b 100644
--- a/lisc/test/live.ssa
+++ b/lisc/test/live.ssa
@@ -6,16 +6,16 @@
 # nothing should ever be live at the entry
 
 function $test {
- @start
+@start
 	%b =w copy 0
 	%x =w copy 10
 	jnz 0, @loop, @left
- @left
+@left
 	jmp @inloop
- @loop
+@loop
 	%x1 =w add %x, 1
- @inloop
+@inloop
 	%b1 =w add %b, 1
- @endloop
+@endloop
 	jmp @loop
 }