Index: tests/exceptions/try-ctrl-flow.cfa
===================================================================
--- tests/exceptions/try-ctrl-flow.cfa	(revision d3cf623098e72d98fd3ea76544061496946dbba4)
+++ tests/exceptions/try-ctrl-flow.cfa	(revision 49510dbc385fe7264db50b1627dd53497ff9a112)
@@ -81,9 +81,9 @@
 }
 
-void choose_fallthru_in_finally() {
+void choose_fallthrough_in_finally() {
 	choose (1) {
 	case 1:
 		try {} finally {
-			fallthru;
+			fallthrough;
 		}
 	default:
@@ -105,9 +105,9 @@
 }
 
-void labelled_choose_fallthru_in_finally() {
+void labelled_choose_fallthrough_in_finally() {
 	mainBlock: choose (1) {
 	case 1:
 		try {} finally {
-			fallthru mainBlock;
+			fallthrough mainBlock;
 		}
 	case 2:
@@ -118,9 +118,9 @@
 }
 
-void choose_fallthru_default_in_finally() {
+void choose_fallthrough_default_in_finally() {
 	choose (1) {
 	case 1:
 		try {} finally {
-			fallthru default;
+			fallthrough default;
 		}
 	default:
