From c3e1ef1064f1ff682e1cf80bb382a8211a06af61 Mon Sep 17 00:00:00 2001 From: David Given Date: Sat, 31 Dec 2016 00:14:28 +0000 Subject: [PATCH] B patch table names shouldn't be in the B symbol namespace. --- lang/b/compiler/b0.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/b/compiler/b0.c b/lang/b/compiler/b0.c index 3d87774a2..f42298d33 100644 --- a/lang/b/compiler/b0.c +++ b/lang/b/compiler/b0.c @@ -14,7 +14,7 @@ int contlab = -1; int brklab = -1; int wordsize = 4; -const char* modulename = "b_module_main"; +const char* modulename = "bmodule_main"; int bsymb_part; int code_part; int string_part; @@ -49,7 +49,7 @@ main(int argc, char *argv[]) break; case 'B': - modulename = aprintf("b_module_%s", optarg); + modulename = aprintf("bmodule_%s", optarg); break; case 'i': -- 2.34.1