summaryrefslogtreecommitdiffhomepage
path: root/dev/LibCompiler/src/Backend
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-28 18:12:17 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-05-28 18:12:17 +0200
commitd37f1a7381825d414e4b71c487eea509325f24c3 (patch)
treeb8df54b1da6a152e6f9a61b91b8feac90bdef4b9 /dev/LibCompiler/src/Backend
parent26b2f0395db53b0bbb1915cd27ac2b99a4dbb0a2 (diff)
refactor: Refactor toolchain source code.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibCompiler/src/Backend')
-rw-r--r--dev/LibCompiler/src/Backend/AssemblerARM64.cc2
-rw-r--r--dev/LibCompiler/src/Backend/AssemblerPowerPC.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/dev/LibCompiler/src/Backend/AssemblerARM64.cc b/dev/LibCompiler/src/Backend/AssemblerARM64.cc
index 142dcc7..a1cc6dc 100644
--- a/dev/LibCompiler/src/Backend/AssemblerARM64.cc
+++ b/dev/LibCompiler/src/Backend/AssemblerARM64.cc
@@ -45,7 +45,7 @@
constexpr auto cPowerIPAlignment = 0x1U;
-static CharType kOutputArch = LibCompiler::kPefArchARM64;
+static Char kOutputArch = LibCompiler::kPefArchARM64;
static std::size_t kCounter = 1UL;
diff --git a/dev/LibCompiler/src/Backend/AssemblerPowerPC.cc b/dev/LibCompiler/src/Backend/AssemblerPowerPC.cc
index 3134748..b979f64 100644
--- a/dev/LibCompiler/src/Backend/AssemblerPowerPC.cc
+++ b/dev/LibCompiler/src/Backend/AssemblerPowerPC.cc
@@ -45,7 +45,7 @@
constexpr auto cPowerIPAlignment = 0x4U;
-static CharType kOutputArch = LibCompiler::kPefArchPowerPC;
+static Char kOutputArch = LibCompiler::kPefArchPowerPC;
static std::size_t kCounter = 1UL;