about summary refs log tree commit diff stats
path: root/040brace.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-02 09:28:09 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-02 09:28:09 -0800
commit96369323aac71aeadd90432426b3e6709430aa2d (patch)
tree5ab647f5bdfbf64b32431af014e2fe95234b1d59 /040brace.cc
parentf169287150fe68fbc165d771dd9f282b68a9f5bf (diff)
downloadmu-96369323aac71aeadd90432426b3e6709430aa2d.tar.gz
2349
Diffstat (limited to '040brace.cc')
-rw-r--r--040brace.cc19
1 files changed, 0 insertions, 19 deletions
diff --git a/040brace.cc b/040brace.cc
index 1bdf8121..c3c74ad9 100644
--- a/040brace.cc
+++ b/040brace.cc
@@ -134,25 +134,6 @@ long long int matching_brace(long long int index, const list<pair<int, long long
   return SIZE(Recipe[r].steps);  // exit current routine
 }
 
-// todo: remove?
-//: Make sure these pseudo recipes get consistent numbers in all tests, even
-//: though they aren't implemented.
-
-:(before "End Primitive Recipe Declarations")
-BREAK,
-BREAK_IF,
-BREAK_UNLESS,
-LOOP,
-LOOP_IF,
-LOOP_UNLESS,
-:(before "End Primitive Recipe Numbers")
-Recipe_ordinal["break"] = BREAK;
-Recipe_ordinal["break-if"] = BREAK_IF;
-Recipe_ordinal["break-unless"] = BREAK_UNLESS;
-Recipe_ordinal["loop"] = LOOP;
-Recipe_ordinal["loop-if"] = LOOP_IF;
-Recipe_ordinal["loop-unless"] = LOOP_UNLESS;
-
 :(scenario loop)
 recipe main [
   1:number <- copy 0