Skip to content

Commit ee12830

Browse files
committed
Consistently use 4 space indentation
Some blocks had accidentally gotten only 2 space indentation.
1 parent 4593d78 commit ee12830

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

gas-preprocessor.pl

+8-8
Original file line numberDiff line numberDiff line change
@@ -1028,14 +1028,14 @@ sub handle_serialized_line {
10281028
# Convert "ldrb w0, [x0, #-1]" into "ldurb w0, [x0, #-1]".
10291029
# Don't do this for forms with writeback though.
10301030
if ($line =~ /(ld|st)(r[bh]?)\s+(\w+)\s*,\s*\[\s*(\w+)\s*,\s*#([^\]]+)\s*\][^!]/) {
1031-
my $instr = $1;
1032-
my $suffix = $2;
1033-
my $target = $3;
1034-
my $base = $4;
1035-
my $offset = eval_expr($5);
1036-
if ($offset < 0) {
1037-
$line =~ s/$instr$suffix/${instr}u$suffix/;
1038-
}
1031+
my $instr = $1;
1032+
my $suffix = $2;
1033+
my $target = $3;
1034+
my $base = $4;
1035+
my $offset = eval_expr($5);
1036+
if ($offset < 0) {
1037+
$line =~ s/$instr$suffix/${instr}u$suffix/;
1038+
}
10391039
}
10401040

10411041
if ($ENV{GASPP_ARMASM64_INVERT_SCALE}) {

0 commit comments

Comments
 (0)