https://gcc.gnu.org/g:7352dfc0bb234b94fafb75caa714091fe1e7ba6a
commit r16-6115-g7352dfc0bb234b94fafb75caa714091fe1e7ba6a Author: Mohammad-Reza Nabipoor <[email protected]> Date: Mon Dec 15 03:27:36 2025 +0100 a68: fix comment and magic number in ga68-exports.pk Signed-off-by: Mohammad-Reza Nabipoor <[email protected]> gcc/algol68/ChangeLog * ga68-exports.pk: Fix comment and value for magic number. Diff: --- gcc/algol68/ga68-exports.pk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/algol68/ga68-exports.pk b/gcc/algol68/ga68-exports.pk index 86484b8d8893..01de350ec402 100644 --- a/gcc/algol68/ga68-exports.pk +++ b/gcc/algol68/ga68-exports.pk @@ -201,7 +201,7 @@ type ga68_mode = Mode extracts represent declarations of mode indications, like for example `mode Foo = struct (int i, real r)'. - Identifier extracts represent declarations of constans, variables, + Identifier extracts represent declarations of constants, variables, procedures and operators. Examples are `real pi = 3.14', `int counter', `proc double = (int a) int : a * 2' and `op // = (int a, b) int: a % b'. @@ -276,7 +276,7 @@ type ga68_extract = type ga68_module = struct { - uint<8>[2] magic : magic == [0x0aUB, 0xadUB]; + uint<8>[2] magic : magic == [0x0aUB, 0x68UB]; uint<16> version : version == ga68_exports_ver; /* Module identification.
