Commit f3d91607 by Doug Evans

(BC_OUTPUT_BSS): Define.

From-SVN: r11378
parent 7e159475
...@@ -1893,6 +1893,9 @@ do { long l; \ ...@@ -1893,6 +1893,9 @@ do { long l; \
#define BC_OUTPUT_COMMON(FP, NAME, SIZE, ROUNDED) \ #define BC_OUTPUT_COMMON(FP, NAME, SIZE, ROUNDED) \
do { bc_emit_common(NAME, ROUNDED); bc_globalize_label(NAME); } while (0) do { bc_emit_common(NAME, ROUNDED); bc_globalize_label(NAME); } while (0)
#define BC_OUTPUT_BSS(FP, NAME, SIZE, ROUNDED) \
do { bc_data (); bc_emit_labeldef(NAME); bc_emit_skip (SIZE); } while (0)
#define BC_OUTPUT_LOCAL(FP, NAME, SIZE, ROUNDED) \ #define BC_OUTPUT_LOCAL(FP, NAME, SIZE, ROUNDED) \
bc_emit_common(NAME, ROUNDED) bc_emit_common(NAME, ROUNDED)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment