summaryrefslogtreecommitdiffhomepage
path: root/dev/LibCompiler/src/Frontend
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-06-06 20:58:06 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-06-06 20:58:26 +0200
commit393f6cafb32bc5f0b561ac5d584d16459965f94a (patch)
tree118b6ca854fff241aeab57dcfec114041be7fa6f /dev/LibCompiler/src/Frontend
parent7723e863c034d809cc49a01ad1cc301741006a08 (diff)
refactor: Rename `dbg` to `ddbg` (Darwin Debugger)
why? - This debugger targets XNU. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibCompiler/src/Frontend')
-rw-r--r--dev/LibCompiler/src/Frontend/CompilerCPlusPlusAMD64.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/dev/LibCompiler/src/Frontend/CompilerCPlusPlusAMD64.cc b/dev/LibCompiler/src/Frontend/CompilerCPlusPlusAMD64.cc
index f16fbaa..4a1a1f7 100644
--- a/dev/LibCompiler/src/Frontend/CompilerCPlusPlusAMD64.cc
+++ b/dev/LibCompiler/src/Frontend/CompilerCPlusPlusAMD64.cc
@@ -714,12 +714,12 @@ LibCompiler::SyntaxLeafList::SyntaxLeaf CompilerFrontendCPlusPlusAMD64::Compile(
/////////////////////////////////////////////////////////////////////////////////////////
-class AssemblyCPlusPlusInterface final LC_ASSEMBLY_INTERFACE {
+class AssemblyCPlusPlusInterfaceAMD64 final LC_ASSEMBLY_INTERFACE {
public:
- explicit AssemblyCPlusPlusInterface() = default;
- ~AssemblyCPlusPlusInterface() override = default;
+ explicit AssemblyCPlusPlusInterfaceAMD64() = default;
+ ~AssemblyCPlusPlusInterfaceAMD64() override = default;
- LIBCOMPILER_COPY_DEFAULT(AssemblyCPlusPlusInterface);
+ LIBCOMPILER_COPY_DEFAULT(AssemblyCPlusPlusInterfaceAMD64);
UInt32 Arch() noexcept override { return LibCompiler::AssemblyFactory::kArchAMD64; }
@@ -816,7 +816,7 @@ LIBCOMPILER_MODULE(CompilerCPlusPlusAMD64) {
kErrorLimit = 0;
kCompilerFrontend = new CompilerFrontendCPlusPlusAMD64();
- kFactory.Mount(new AssemblyCPlusPlusInterface());
+ kFactory.Mount(new AssemblyCPlusPlusInterfaceAMD64());
LibCompiler::install_signal(SIGSEGV, Detail::drvi_crash_handler);