From 779218c89f67a4d5c896968e7fe5d3a873a31e3d Mon Sep 17 00:00:00 2001 From: "James K. Lowden" <jklowden@symas.com> Date: Fri, 10 May 2024 11:30:55 -0400 Subject: [PATCH] introduce unimplemented EC enumerations --- gcc/cobol/ec.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gcc/cobol/ec.h b/gcc/cobol/ec.h index 16d28d7b2b43..d6df47dc27b6 100644 --- a/gcc/cobol/ec.h +++ b/gcc/cobol/ec.h @@ -210,6 +210,12 @@ enum ec_disposition_t { ec_category_fatal_e, ec_category_nonfatal_e, ec_category_implementor_e, + + // unimplemented equivalents + uc_category_none_e = 0x80 + ec_category_none_e, + uc_category_fatal_e = 0x80 + ec_category_fatal_e, + uc_category_nonfatal_e = 0x80 + ec_category_nonfatal_e, + uc_category_implementor_e = 0x80 + ec_category_implementor_e, }; /* -- GitLab