diff options
Diffstat (limited to 'gcc/cobol/util.cc')
-rw-r--r-- | gcc/cobol/util.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/cobol/util.cc b/gcc/cobol/util.cc index 854bd7f..afa1597 100644 --- a/gcc/cobol/util.cc +++ b/gcc/cobol/util.cc @@ -2448,6 +2448,8 @@ cbl_internal_error(const char *gmsgid, ...) { va_start(ap, gmsgid); emit_diagnostic_valist( DK_ICE, token_location, option_zero, gmsgid, &ap ); va_end(ap); + abort(); // This unnecessary statement is needed so that [[noreturn]] + // // doesn't cause a warning. } void |