Index: tests/ctrl-flow/fallthrough.cfa
===================================================================
--- tests/ctrl-flow/fallthrough.cfa	(revision 10b5970650e2ff3d8e757dd5c91889d466e44fe0)
+++ tests/ctrl-flow/fallthrough.cfa	(revision d96f7c4f1e2b7dfb521e83969e9704b7e12505da)
@@ -10,6 +10,6 @@
 // Created On       : Wed Mar 14 10:06:25 2018
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Dec 24 11:24:35 2018
-// Update Count     : 22
+// Last Modified On : Fri Jan 17 14:09:49 2025
+// Update Count     : 23
 //
 
@@ -20,15 +20,15 @@
 	  case 1:
 		sout | "case 1";
-		fallthru;
+		fallthrough;
 	  case 2:
 		sout | "case 2";
-		fallthru;
-		sout | "did not fallthru";
-		if ( 7 ) fallthru common2;
-		fallthru common1;
+		fallthrough;
+		sout | "did not fallthrough";
+		if ( 7 ) fallthrough common2;
+		fallthrough common1;
 	  case 3:
 		sout | "case 3";
-		fallthru default;
-		fallthru common1;
+		fallthrough default;
+		fallthrough common1;
 	  common1:
 		sout | "common1";
@@ -36,12 +36,12 @@
 	  case 4:
 		sout | "case 4";
-		fallthru common2;
+		fallthrough common2;
 	  case 5:
 		sout | "case 5";
-		fallthru common2;
-		fallthru default;
+		fallthrough common2;
+		fallthrough default;
 	  case 6:
 		sout | "case 6";
-		fallthru common2;
+		fallthrough common2;
 	  common2:
 		sout | "common2";
@@ -49,5 +49,5 @@
 	  default:
 		sout | "default";
-		fallthru;
+		fallthrough;
 	} // choose
 
@@ -62,5 +62,5 @@
 			for ( int i = 0; i < 4; i += 1 ) {
 				sout | i;
-				if ( i == 2 ) fallthru common;
+				if ( i == 2 ) fallthrough common;
 			} // for
 		} // switch
@@ -73,23 +73,23 @@
 			} else {
 				sout | "check";
-				fallthru common;
+				fallthrough common;
 			} // if
 		} // if
 	  common:
 		sout | "common";
-		fallthru;
+		fallthrough;
 		break;
 	  default:
 		sout | "default";
-		fallthru;
+		fallthrough;
 	} // switch
 
 #if ERR1
 	// ERROR: fallthrough must be enclosed in switch or choose
-	fallthru;
+	fallthrough;
 	// ERROR: fallthrough must be enclosed in switch or choose
-	fallthru common4;
+	fallthrough common4;
 	// ERROR: fallthrough must be enclosed in switch or choose
-	fallthru default;
+	fallthrough default;
 	choose ( 3 ) {
 	  case 2:
@@ -98,7 +98,7 @@
 			  case 1:
 				// ERROR: default is later, but in a different switch
-				fallthru default;
+				fallthrough default;
 				// ERROR: common3 is later, but not at the same level as a case clause
-				fallthru common3;
+				fallthrough common3;
 			}
 		  common3: ;
@@ -108,7 +108,7 @@
 	  common4:
 		// ERROR: attempt to jump up with fallthrough
-		if ( 7 ) fallthru common4;
+		if ( 7 ) fallthrough common4;
 		// ERROR: attempt to jump up with fallthrough
-		fallthru default;
+		fallthrough default;
 	} // choose
 #endif
Index: tests/ctrl-flow/labelledExit.cfa
===================================================================
--- tests/ctrl-flow/labelledExit.cfa	(revision 10b5970650e2ff3d8e757dd5c91889d466e44fe0)
+++ tests/ctrl-flow/labelledExit.cfa	(revision d96f7c4f1e2b7dfb521e83969e9704b7e12505da)
@@ -10,6 +10,6 @@
 // Created On       : Wed Aug 10 07:29:39 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Jun  5 10:07:34 2021
-// Update Count     : 13
+// Last Modified On : Fri Jan 17 14:18:15 2025
+// Update Count     : 14
 // 
 
@@ -131,5 +131,5 @@
   			break Choose;
   		}
-  		fallthru;
+  		fallthrough;
   	  case 2:
   		i += 1;
