Commit 98203e26 by Doug Evans

(ASM_DECLARE_{FUNCTION,OBJECT}_NAME): Remove bytecode support.

From-SVN: r11962
parent 6303b9ba
......@@ -310,10 +310,6 @@ do { \
#define ASM_DECLARE_FUNCTION_NAME(STREAM,NAME,DECL) \
{ \
if (output_bytecode) \
BC_OUTPUT_LABEL (STREAM, NAME); \
else \
{ \
ASM_OUTPUT_LABEL (STREAM, NAME); \
if (! TREE_PUBLIC (DECL)) \
{ \
......@@ -321,15 +317,10 @@ do { \
ASM_OUTPUT_LABEL (STREAM, NAME); \
} \
aof_delete_import ((NAME)); \
} \
}
#define ASM_DECLARE_OBJECT_NAME(STREAM,NAME,DECL) \
{ \
if (output_bytecode) \
BC_OUTPUT_LABEL (STREAM, NAME); \
else \
{ \
ASM_OUTPUT_LABEL (STREAM, NAME); \
if (! TREE_PUBLIC (DECL)) \
{ \
......@@ -337,7 +328,6 @@ do { \
ASM_OUTPUT_LABEL (STREAM, NAME); \
} \
aof_delete_import ((NAME)); \
} \
}
#define ASM_OUTPUT_EXTERNAL(STREAM,DECL,NAME) \
......
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