commit a1a0f635df0811a394b3662dea887d4ba0eb089b
parent 5b88d5faa321fd71a734d5c957c162aad46d7daf
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Thu, 21 Sep 2017 11:32:09 +0100
[as] Change the name of emit.c to symbol.c
Diffstat:
3 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/as/Makefile b/as/Makefile
@@ -4,7 +4,7 @@ LIBDIR = ../lib/scc
include ../config.mk
include $(LIBDIR)/libdep.mk
-OBJ = main.o emit.o ins.o parser.o expr.o
+OBJ = main.o symbol.o ins.o parser.o expr.o
HDR = ../inc/scc.h as.h
MOREFLAGS = -I../inc/$(STD) $(AS_CFLAGS)
diff --git a/as/as.h b/as/as.h
@@ -96,7 +96,7 @@ struct node {
struct node *right;
};
-/* emit.c */
+/* symbol.c */
extern char *pack(TUINT v, int n, int inc);
extern void isections(void);
extern void writeout(char *name);
diff --git a/as/emit.c b/as/symbol.c