about summary refs log tree commit diff stats
path: root/subx/022check_instruction.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-07-27 12:33:08 -0700
committerKartik Agaram <vc@akkartik.com>2018-07-27 12:35:49 -0700
commit4718a77ce26c02bac7cfe28637c2892091ac0075 (patch)
treeea3af5905138b2cdf09c55f64ba557fd434b54e2 /subx/022check_instruction.cc
parent7a79dafad1f458030a9e53ad2e3f84861dac7f06 (diff)
downloadmu-4718a77ce26c02bac7cfe28637c2892091ac0075.tar.gz
4444
More tracing reorg.
Diffstat (limited to 'subx/022check_instruction.cc')
-rw-r--r--subx/022check_instruction.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/subx/022check_instruction.cc b/subx/022check_instruction.cc
index 5eb21136..31834b38 100644
--- a/subx/022check_instruction.cc
+++ b/subx/022check_instruction.cc
@@ -66,6 +66,7 @@ Transform.push_back(check_operands);
 
 :(code)
 void check_operands(/*const*/ program& p) {
+  trace(99, "transform") << "-- check operands" << end();
   if (p.segments.empty()) return;
   const segment& code = p.segments.at(0);
   for (int i = 0;  i < SIZE(code.lines);  ++i) {