From edb842364ab5908e29bcf7e94de41d5ac2f47b2c Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 31 Dec 2023 11:48:21 +0100 Subject: masm/octal: change prefix from '0' to 'o' Signed-off-by: Amlal El Mahrouss --- CompilerDriver/masm.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CompilerDriver') 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); -- cgit v1.2.3