diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2023-12-31 11:48:21 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2023-12-31 11:48:21 +0100 |
| commit | edb842364ab5908e29bcf7e94de41d5ac2f47b2c (patch) | |
| tree | d18e129ce9e1cd33fe836455bae09c5c5c20041d | |
| parent | 3d69e0d367cb1c5ef9f6fd7efe37a150c0c4930c (diff) | |
masm/octal: change prefix from '0' to 'o'
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
| -rw-r--r-- | CompilerDriver/masm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CompilerDriver/masm.cxx b/CompilerDriver/masm.cxx index df4ca02..bd99a92 100644 --- a/CompilerDriver/masm.cxx +++ b/CompilerDriver/masm.cxx @@ -641,7 +641,7 @@ static bool masm_write_number(std::size_t pos, std::string& jump_label) return true; } - case '0': + case 'o': { if (auto res = strtoq(jump_label.substr(pos + 2).c_str(), nullptr, 7); |
