summaryrefslogtreecommitdiffhomepage
path: root/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-02-04 10:09:53 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-02-04 10:09:53 +0100
commit60eb7b7731e122b2e116cac5ce10617ef794a31a (patch)
tree058fb99d8365fdf5c99ce6746718df6745f2577c /dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc
parent7c2425f9b3f2d2cd7655dd9449d8aef6275eb1cc (diff)
ADD: Minor tweaks.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc')
-rw-r--r--dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc b/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc
index 7abfea9..4e962da 100644
--- a/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc
+++ b/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc
@@ -25,7 +25,7 @@
#include <cstdio>
-/* ZKA C++ Compiler */
+/* NE C++ Compiler */
/* This is part of the LibCompiler. */
/* (c) Amlal EL Mahrouss. */
@@ -156,7 +156,7 @@ static bool kOnForLoop = false;
static bool kInBraces = false;
static size_t kBracesCount = 0UL;
-/* @brief C++ compiler backend for the ZKA C++ driver */
+/* @brief C++ compiler backend for the NE C++ driver */
class CompilerFrontendCPlusPlus final : public LibCompiler::ICompilerFrontend
{
public:
@@ -210,7 +210,7 @@ static std::size_t kFunctionEmbedLevel = 0UL;
const char* CompilerFrontendCPlusPlus::Language()
{
- return "ZKA C++";
+ return "NE C++";
}
/////////////////////////////////////////////////////////////////////////////////////////