about summary refs log tree commit diff stats
path: root/020run.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-07-25 22:23:14 -0700
committerKartik Agaram <vc@akkartik.com>2018-07-26 09:03:13 -0700
commit15152795cead7ed7d6673a0c2ac996ac9c346945 (patch)
tree6a4e362e654f587fd90d8561a92a3c0948bb780c /020run.cc
parentd44d413216fae85343bfb53327b2f1a2c13d7faa (diff)
downloadmu-15152795cead7ed7d6673a0c2ac996ac9c346945.tar.gz
4417
Audit poor uses of 'cout'.
Diffstat (limited to '020run.cc')
-rw-r--r--020run.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/020run.cc b/020run.cc
index c9d28666..da43e5e7 100644
--- a/020run.cc
+++ b/020run.cc
@@ -91,7 +91,7 @@ void run_current_routine() {
       }
       // End Primitive Recipe Implementations
       default: {
-        cout << "not a primitive op: " << current_instruction().operation << '\n';
+        raise << "not a primitive op: " << current_instruction().operation << '\n' << end();
       }
     }
     //: used by a later layer