---
 gas-preprocessor.pl | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gas-preprocessor.pl b/gas-preprocessor.pl
index e291094..f013c71 100755
--- a/gas-preprocessor.pl
+++ b/gas-preprocessor.pl
@@ -849,6 +849,10 @@ sub handle_serialized_line {
             } elsif (!is_register($target)) {
                 $call_targets{$target}++;
             }
+        } elsif ($line =~ /^\s*.h?word.*\b\d+[bf]\b/) {
+            while ($line =~ /\b(\d+)([bf])\b/g) {
+                $line = handle_local_label($line, $1, $2);
+            }
         }
 
         # ALIGN in armasm syntax is the actual number of bytes
-- 
1.8.5.2 (Apple Git-48)

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to