diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-01-01 23:25:26 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-01-01 23:25:26 +0100 |
| commit | b6f625090109568d4bfd9f5fc6bc5c88682795b8 (patch) | |
| tree | 66f8da1d70cf2217a8f13d49206d987caec6de14 /dev/LibCompiler/src | |
| parent | e227fc2e6c482c850477a1741c673afae31d46fa (diff) | |
IMPL: Update to date fixes to compiler.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/LibCompiler/src')
| -rw-r--r-- | dev/LibCompiler/src/CCompiler64x0.cc | 4 | ||||
| -rw-r--r-- | dev/LibCompiler/src/CCompilerPower64.cc | 2 | ||||
| -rw-r--r-- | dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc | 4 | ||||
| -rw-r--r-- | dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc | 4 | ||||
| -rw-r--r-- | dev/LibCompiler/src/DynamicLinker64PEF.cc | 6 | ||||
| -rw-r--r-- | dev/LibCompiler/src/String.cc | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/dev/LibCompiler/src/CCompiler64x0.cc b/dev/LibCompiler/src/CCompiler64x0.cc index aaf56e4..657c2f9 100644 --- a/dev/LibCompiler/src/CCompiler64x0.cc +++ b/dev/LibCompiler/src/CCompiler64x0.cc @@ -24,7 +24,7 @@ /* C driver */ /* This is part of the LibCompiler. */ -/* (c) Theater Quality Corporporated */ +/* (c) Theater Quality Corp. */ /// @author EL Mahrouss Amlal (amlel) /// @file 64x0-cc.cxx @@ -1482,7 +1482,7 @@ public: #define kPrintF printf #define kSplashCxx() \ - kPrintF(kWhite "ZKA C Driver, %s, (c) Theater Quality Corporporated\n", kDistVersion) + kPrintF(kWhite "ZKA C Driver, %s, (c) Theater Quality Corp.\n", kDistVersion) static void cc_print_help() { diff --git a/dev/LibCompiler/src/CCompilerPower64.cc b/dev/LibCompiler/src/CCompilerPower64.cc index ab303be..dca96b3 100644 --- a/dev/LibCompiler/src/CCompilerPower64.cc +++ b/dev/LibCompiler/src/CCompilerPower64.cc @@ -1502,7 +1502,7 @@ public: #define kPrintF printf #define kSplashCxx() \ - kPrintF(kWhite "cc, %s, (c) Theater Quality Corporporated\n", kDistVersion) + kPrintF(kWhite "cc, %s, (c) Theater Quality Corp.\n", kDistVersion) static void cc_print_help() { diff --git a/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc b/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc index a6c515f..4994644 100644 --- a/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc +++ b/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc @@ -16,7 +16,7 @@ #define kExitNO (EXIT_FAILURE) #define kSplashCxx() \ - kPrintF(kWhite "%s\n", "TQ Media C++ Compiler Driver, (c) 2024 Theater Quality Corporporated, all rights reserved.") + kPrintF(kWhite "%s\n", "TQ C++ Compiler Driver, (c) 2024 Theater Quality Corp., all rights reserved.") // extern_segment, @autodelete { ... }, fn foo() -> auto { ... } @@ -26,7 +26,7 @@ /* ZKA C++ Compiler */ /* This is part of the LibCompiler. */ -/* (c) Theater Quality Corporporated */ +/* (c) Theater Quality Corp. */ /// @author EL Mahrouss Amlal (amlel) /// @file CPlusPlusCompilerAMD64.cxx diff --git a/dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc b/dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc index 917c39e..906ba4e 100644 --- a/dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc +++ b/dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc @@ -971,13 +971,13 @@ TOOLCHAINKIT_MODULE(CPlusPlusPreprocessorMain) { if (strcmp(argv[index], "--bpp:ver") == 0) { - printf("%s\n", "bpp v1.11, (c) Theater Quality Corporporated"); + printf("%s\n", "bpp v1.11, (c) Theater Quality Corp."); return 0; } if (strcmp(argv[index], "--bpp:?") == 0) { - printf("%s\n", "ZKA Preprocessor Driver v1.11, (c) Theater Quality Corporporated"); + printf("%s\n", "ZKA Preprocessor Driver v1.11, (c) Theater Quality Corp."); printf("%s\n", "--bpp:working-dir <path>: set directory to working path."); printf("%s\n", "--bpp:include-dir <path>: add directory to include path."); printf("%s\n", "--bpp:def <name> <value>: define a macro."); diff --git a/dev/LibCompiler/src/DynamicLinker64PEF.cc b/dev/LibCompiler/src/DynamicLinker64PEF.cc index 5c09494..aaab9b6 100644 --- a/dev/LibCompiler/src/DynamicLinker64PEF.cc +++ b/dev/LibCompiler/src/DynamicLinker64PEF.cc @@ -8,7 +8,7 @@ ------------------------------------------- */ /// @author EL Mahrouss Amlal (amlel) -/// @brief TQ Media 64-bit PEF Linker. +/// @brief TQ 64-bit PEF Linker. /// Last Rev: Sat Feb 24 CET 2024 /// @note Do not look up for anything with .code64/.data64/.zero64! /// It will be loaded when the program loader will start the image. @@ -32,7 +32,7 @@ #include <LibCompiler/NFC/AE.h> #include <cstdint> -#define kLinkerVersionStr "TQ Media 64-Bit Linker %s, (c) Theater Quality Corporporated 2024, all rights reserved.\n" +#define kLinkerVersionStr "TQ 64-Bit Linker %s, (c) Theater Quality Corp. 2024, all rights reserved.\n" #define MemoryCopy(DST, SRC, SZ) memcpy(DST, SRC, SZ) #define StringCompare(DST, SRC) strcmp(DST, SRC) @@ -253,7 +253,7 @@ TOOLCHAINKIT_MODULE(DynamicLinker64PEF) pef_container.Count = 0UL; pef_container.Kind = is_executable ? LibCompiler::kPefKindExec : LibCompiler::kPefKindDylib; pef_container.SubCpu = kSubArch; - pef_container.Linker = kLinkerId; // Theater Quality Corporporated Linker + pef_container.Linker = kLinkerId; // Theater Quality Corp. Linker pef_container.Abi = kAbi; // Multi-Processor UX ABI pef_container.Magic[0] = kPefMagic[kFatBinaryEnable ? 2 : 0]; pef_container.Magic[1] = kPefMagic[1]; diff --git a/dev/LibCompiler/src/String.cc b/dev/LibCompiler/src/String.cc index 28060fd..2794007 100644 --- a/dev/LibCompiler/src/String.cc +++ b/dev/LibCompiler/src/String.cc @@ -14,7 +14,7 @@ * @version 0.2 * @date 2024-01-23 * - * @copyright Copyright (c) Theater Quality Corporporated + * @copyright Copyright (c) Theater Quality Corp. * */ |
