aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/gas-preprocessor.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/gas-preprocessor.pl b/tools/gas-preprocessor.pl
index 082f71b..9787491 100644
--- a/tools/gas-preprocessor.pl
+++ b/tools/gas-preprocessor.pl
@@ -121,6 +121,7 @@ while (<ASMFILE>) {
s/\.global/.globl/x;
# also catch .section .rodata since the equivalent to .const_data is .section __DATA,__const
s/(.*)\.rodata/.const_data/x;
+ s/\.bss/.data/x;
s/\.int/.long/x;
s/\.float/.single/x;