about summary refs log tree commit diff stats
path: root/021check_instruction.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-28 21:53:51 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-28 21:53:51 -0800
commita1b06887864811a3fa95a0caf4c95dd07321b52d (patch)
treeff10a3ea9a9edc46a7eaaa6f1e3eea584a6902ab /021check_instruction.cc
parentdfdfc7e94af9cc304c94e2acff3238befe463f39 (diff)
downloadmu-a1b06887864811a3fa95a0caf4c95dd07321b52d.tar.gz
2493 - eliminate a couple of dependencies
In general you only want to specify one transform in terms of
(before/after) another if the other direction wouldn't work. Otherwise
try to make it work by just pushing transforms at the start/end of the
list.
Diffstat (limited to '021check_instruction.cc')
-rw-r--r--021check_instruction.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/021check_instruction.cc b/021check_instruction.cc
index ada4333d..7b177993 100644
--- a/021check_instruction.cc
+++ b/021check_instruction.cc
@@ -8,7 +8,7 @@
 //: sophisticated layer system I'd introduce the simpler version first and
 //: transform it in a separate layer or set of layers.
 
-:(after "Transform.push_back(update_instruction_operations)")
+:(before "End Transforms")
 Transform.push_back(check_instruction);  // idempotent
 
 :(code)