From c0872114af91de2e56746bbfb36ae5ff2a5a457b Mon Sep 17 00:00:00 2001 From: pkivolowitz Date: Tue, 7 Jun 2022 15:48:13 -0500 Subject: [PATCH] Update README.md --- section_1/for/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/section_1/for/README.md b/section_1/for/README.md index 1a70d8b..4a9beef 100644 --- a/section_1/for/README.md +++ b/section_1/for/README.md @@ -71,7 +71,6 @@ The next set of assembly language corresponds to the flow chart on the right, ab add x0, x0, 1 // 10 2: cmp x0, 10 // 11 blt 1b // 12 - // 13 ``` Notice this contains one fewer lines of assembly language within the loop itself (3 lines versus 4). Again, the contents of the code block are not counted. @@ -87,6 +86,7 @@ for (long i = 0; i < 10; i++) { continue; // CODE BLOCK "B" } +``` Here is what we would need to write to support a `continue` if the "conventional" ordering were used with the decision evaluation at the top: