https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119232
Bug ID: 119232 Summary: gcobol -fdump-lang-all produces no dumps Product: gcc Version: 15.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: cobol Assignee: unassigned at gcc dot gnu.org Reporter: sjames at gcc dot gnu.org Target Milestone: --- a.cob: ``` IDENTIFICATION DIVISION. PROGRAM-ID. CobolGreeting. *>Program to display COBOL greetings DATA DIVISION. WORKING-STORAGE SECTION. 01 IterNum PIC 9 VALUE 5. PROCEDURE DIVISION. BeginProgram. PERFORM DisplayGreeting IterNum TIMES. STOP RUN. DisplayGreeting. DISPLAY "Greetings from COBOL". ``` ``` $ gcobol a.cob -o a -fdump-lang-all ``` This doesn't seem to produce any dump files (neither does -fdump-lang-all-all).