We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eca4c18 commit 0f8e101Copy full SHA for 0f8e101
gas-preprocessor.pl
@@ -803,6 +803,10 @@ sub handle_serialized_line {
803
$line =~ s/\b(saddl2?)(\s+v[0-3]?\d\.(\w+))\b/$1.$3$2/;
804
$line =~ s/\b(v[0-3]?\d)\.\w+\b/$1/g;
805
}
806
+ if ($line =~ /^\s*dup\b.*\]$/) {
807
+ $line =~ s/\bdup(\s+v[0-3]?\d)\.(\w+)\b/dup.$2$1/g;
808
+ $line =~ s/\b(v[0-3]?\d)\.[bhsdBHSD](\[\d\])$/$1$2/g;
809
+ }
810
811
812
0 commit comments