notaz.gp2x.de
/
pcsx_rearmed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a53073e
)
gas-preprocessor: support .bss
author
notaz
<notasas@gmail.com>
Sun, 24 Mar 2013 23:03:27 +0000
(
00:03
+0100)
committer
notaz
<notasas@gmail.com>
Mon, 25 Mar 2013 01:45:19 +0000
(
03:45
+0200)
same as .data on Mach-O it seems
tools/gas-preprocessor.pl
patch
|
blob
|
blame
|
history
diff --git
a/tools/gas-preprocessor.pl
b/tools/gas-preprocessor.pl
index
082f71b
..
9787491
100644
(file)
--- 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;