diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-27 08:48:56 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-27 08:48:56 +0100 |
| commit | 9f9c1f6e411eee8278aa49f5067d0c40d77c9ced (patch) | |
| tree | b8750bd99ff14c2c1b39f581b02fdf905fd70418 /dev/ToolchainKit/src/CPlusPlusCompilerAMD64.cc | |
| parent | cf8093e8bb97e70d268c3184ac30ec20d5f07828 (diff) | |
IMP: Support for numbers inside 'mov' instructions (AMD64)
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ToolchainKit/src/CPlusPlusCompilerAMD64.cc')
| -rw-r--r-- | dev/ToolchainKit/src/CPlusPlusCompilerAMD64.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/ToolchainKit/src/CPlusPlusCompilerAMD64.cc b/dev/ToolchainKit/src/CPlusPlusCompilerAMD64.cc index 55f8d12..349b056 100644 --- a/dev/ToolchainKit/src/CPlusPlusCompilerAMD64.cc +++ b/dev/ToolchainKit/src/CPlusPlusCompilerAMD64.cc @@ -735,7 +735,7 @@ ndk_compile_ok: ///////////////////////////////////////////////////////////////////////////////////////// /** - * @brief C To Assembly mount-point. + * @brief C++ assembler class. */ ///////////////////////////////////////////////////////////////////////////////////////// @@ -836,7 +836,7 @@ static void cxx_print_help() { kSplashCxx(); kPrintF("%s", "No help available, see:\n"); - kPrintF("%s", "www.zeta.com/developer/c++-drv\n"); + kPrintF("%s", "www.zws.zka.com/help/c++lang\n"); } ///////////////////////////////////////////////////////////////////////////////////////// @@ -921,7 +921,7 @@ TOOLCHAINKIT_MODULE(CompilerCPlusPlusX8664) continue; } - if (strcmp(argv[index], "--cl:ver") == 0) + if (strcmp(argv[index], "--cl:version") == 0) { kSplashCxx(); return kExitOK; @@ -934,7 +934,7 @@ TOOLCHAINKIT_MODULE(CompilerCPlusPlusX8664) continue; } - if (strcmp(argv[index], "--cl:?") == 0) + if (strcmp(argv[index], "--cl:h") == 0) { cxx_print_help(); |
