cosmetic indentation style fix

This commit is contained in:
Quentin Carbonneaux 2015-09-14 18:06:29 -04:00
parent 73b7d9b199
commit ee46ff8dad
17 changed files with 81 additions and 81 deletions

View file

@ -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
}