summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/src/Frontend/CCompilerPower64.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-08-05 09:47:53 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-08-05 09:47:53 +0100
commitb0c5f2a2683657182f5ce3dc3bcbf252164b0077 (patch)
treea2f43f8d5943ce4825a0f1eb4e921d30e8e78eb9 /dev/CompilerKit/src/Frontend/CCompilerPower64.cc
parente272dd8e4d2437423b5140ad76cb690f4e182d76 (diff)
feat! compiler_kit & debugger_kit: breaking changes, big name refactors on the source code have been done.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/CompilerKit/src/Frontend/CCompilerPower64.cc')
-rw-r--r--dev/CompilerKit/src/Frontend/CCompilerPower64.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/CompilerKit/src/Frontend/CCompilerPower64.cc b/dev/CompilerKit/src/Frontend/CCompilerPower64.cc
index aaa2308..0ffbef0 100644
--- a/dev/CompilerKit/src/Frontend/CCompilerPower64.cc
+++ b/dev/CompilerKit/src/Frontend/CCompilerPower64.cc
@@ -130,7 +130,7 @@ class CompilerFrontendPower64 final : public CompilerKit::CompilerFrontendInterf
explicit CompilerFrontendPower64() = default;
~CompilerFrontendPower64() override = default;
- LIBCOMPILER_COPY_DEFAULT(CompilerFrontendPower64);
+ NECTI_COPY_DEFAULT(CompilerFrontendPower64);
std::string Check(const char* text, const char* file);
CompilerKit::SyntaxLeafList::SyntaxLeaf Compile(std::string text, std::string file) override;
@@ -330,7 +330,7 @@ CompilerKit::SyntaxLeafList::SyntaxLeaf CompilerFrontendPower64::Compile(std::st
if (expr.find(")") != std::string::npos) expr.erase(expr.find(")"));
- kIfFunction = "__LIBCOMPILER_IF_PROC_";
+ kIfFunction = "__NECTI_IF_PROC_";
kIfFunction += std::to_string(time_off._Raw);
syntax_leaf.fUserValue =
@@ -1067,7 +1067,7 @@ class AssemblyMountpointCLang final LC_ASSEMBLY_INTERFACE {
explicit AssemblyMountpointCLang() = default;
~AssemblyMountpointCLang() override = default;
- LIBCOMPILER_COPY_DEFAULT(AssemblyMountpointCLang);
+ NECTI_COPY_DEFAULT(AssemblyMountpointCLang);
UInt32 Arch() noexcept override { return CompilerKit::AssemblyFactory::kArchPowerPC; }
@@ -1214,7 +1214,7 @@ static void cc_print_help() {
#define kExt ".c"
-LIBCOMPILER_MODULE(CompilerCLangPowerPC) {
+NECTI_MODULE(CompilerCLangPowerPC) {
::signal(SIGSEGV, Detail::drvi_crash_handler);
kCompilerTypes.push_back({.fName = "void", .fValue = "void"});