From 5a58914ef5ccca98e71650a80b7f3f3d2d07ed89 Mon Sep 17 00:00:00 2001 From: sfja Date: Wed, 26 Mar 2025 18:00:43 +0100 Subject: [PATCH] compiler: rename to sbc --- {backup-compiler => sbc}/.clang-format | 0 {backup-compiler => sbc}/.gitignore | 0 {backup-compiler => sbc}/Makefile | 0 {backup-compiler => sbc}/asm_gen.ts | 0 {backup-compiler => sbc}/ast.ts | 0 {backup-compiler => sbc}/deno.jsonc | 0 {backup-compiler => sbc}/deno.lock | 0 {backup-compiler => sbc}/entry.c | 0 {backup-compiler => sbc}/front.ts | 0 {backup-compiler => sbc}/lib.c | 0 {backup-compiler => sbc}/lir.ts | 0 {backup-compiler => sbc}/lir_gen.ts | 0 {backup-compiler => sbc}/lir_optimize.ts | 0 {backup-compiler => sbc}/main.ts | 0 {backup-compiler => sbc}/mir.ts | 0 {backup-compiler => sbc}/mir_gen.ts | 0 {backup-compiler => sbc}/program.sbl | 0 {backup-compiler => sbc}/ty.ts | 0 18 files changed, 0 insertions(+), 0 deletions(-) rename {backup-compiler => sbc}/.clang-format (100%) rename {backup-compiler => sbc}/.gitignore (100%) rename {backup-compiler => sbc}/Makefile (100%) rename {backup-compiler => sbc}/asm_gen.ts (100%) rename {backup-compiler => sbc}/ast.ts (100%) rename {backup-compiler => sbc}/deno.jsonc (100%) rename {backup-compiler => sbc}/deno.lock (100%) rename {backup-compiler => sbc}/entry.c (100%) rename {backup-compiler => sbc}/front.ts (100%) rename {backup-compiler => sbc}/lib.c (100%) rename {backup-compiler => sbc}/lir.ts (100%) rename {backup-compiler => sbc}/lir_gen.ts (100%) rename {backup-compiler => sbc}/lir_optimize.ts (100%) rename {backup-compiler => sbc}/main.ts (100%) rename {backup-compiler => sbc}/mir.ts (100%) rename {backup-compiler => sbc}/mir_gen.ts (100%) rename {backup-compiler => sbc}/program.sbl (100%) rename {backup-compiler => sbc}/ty.ts (100%) diff --git a/backup-compiler/.clang-format b/sbc/.clang-format similarity index 100% rename from backup-compiler/.clang-format rename to sbc/.clang-format diff --git a/backup-compiler/.gitignore b/sbc/.gitignore similarity index 100% rename from backup-compiler/.gitignore rename to sbc/.gitignore diff --git a/backup-compiler/Makefile b/sbc/Makefile similarity index 100% rename from backup-compiler/Makefile rename to sbc/Makefile diff --git a/backup-compiler/asm_gen.ts b/sbc/asm_gen.ts similarity index 100% rename from backup-compiler/asm_gen.ts rename to sbc/asm_gen.ts diff --git a/backup-compiler/ast.ts b/sbc/ast.ts similarity index 100% rename from backup-compiler/ast.ts rename to sbc/ast.ts diff --git a/backup-compiler/deno.jsonc b/sbc/deno.jsonc similarity index 100% rename from backup-compiler/deno.jsonc rename to sbc/deno.jsonc diff --git a/backup-compiler/deno.lock b/sbc/deno.lock similarity index 100% rename from backup-compiler/deno.lock rename to sbc/deno.lock diff --git a/backup-compiler/entry.c b/sbc/entry.c similarity index 100% rename from backup-compiler/entry.c rename to sbc/entry.c diff --git a/backup-compiler/front.ts b/sbc/front.ts similarity index 100% rename from backup-compiler/front.ts rename to sbc/front.ts diff --git a/backup-compiler/lib.c b/sbc/lib.c similarity index 100% rename from backup-compiler/lib.c rename to sbc/lib.c diff --git a/backup-compiler/lir.ts b/sbc/lir.ts similarity index 100% rename from backup-compiler/lir.ts rename to sbc/lir.ts diff --git a/backup-compiler/lir_gen.ts b/sbc/lir_gen.ts similarity index 100% rename from backup-compiler/lir_gen.ts rename to sbc/lir_gen.ts diff --git a/backup-compiler/lir_optimize.ts b/sbc/lir_optimize.ts similarity index 100% rename from backup-compiler/lir_optimize.ts rename to sbc/lir_optimize.ts diff --git a/backup-compiler/main.ts b/sbc/main.ts similarity index 100% rename from backup-compiler/main.ts rename to sbc/main.ts diff --git a/backup-compiler/mir.ts b/sbc/mir.ts similarity index 100% rename from backup-compiler/mir.ts rename to sbc/mir.ts diff --git a/backup-compiler/mir_gen.ts b/sbc/mir_gen.ts similarity index 100% rename from backup-compiler/mir_gen.ts rename to sbc/mir_gen.ts diff --git a/backup-compiler/program.sbl b/sbc/program.sbl similarity index 100% rename from backup-compiler/program.sbl rename to sbc/program.sbl diff --git a/backup-compiler/ty.ts b/sbc/ty.ts similarity index 100% rename from backup-compiler/ty.ts rename to sbc/ty.ts