https://gcc.gnu.org/bugzilla/show_bug.cgi?id=123699
Bug ID: 123699
Summary: Complex number arithmetic operations have no lowering
routine
Product: gcc
Version: 16.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: algol68
Assignee: algol68 at gcc dot gnu.org
Reporter: jpl.algol68 at gmail dot com
Target Milestone: ---
Example code and resulting compilation error message.
begin
compl a, b, c;
a := (1.1, 2.2);
b := (3.3, 4.4);
c := a*b
end
Resulting error message:
attempt.a68: In function ‘__algol68_main’:
attempt.a68:7:9: fatal error: no lowering routine installed for
construct. jemarch has been lazy
7 | c := a*b
| ^
compilation terminated.