about summary refs log tree commit diff stats
path: root/025trace.cc
diff options
context:
space:
mode:
Diffstat (limited to '025trace.cc')
-rw-r--r--025trace.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/025trace.cc b/025trace.cc
index 6a63f369..6052f526 100644
--- a/025trace.cc
+++ b/025trace.cc
@@ -12,9 +12,9 @@ TRACE,
 Recipe_number["trace"] = TRACE;
 :(before "End Primitive Recipe Implementations")
 case TRACE: {
-  assert(isa_literal(current_instruction().ingredients.at(0)));
+  assert(is_literal(current_instruction().ingredients.at(0)));
   string label = current_instruction().ingredients.at(0).name;
-  assert(isa_literal(current_instruction().ingredients.at(1)));
+  assert(is_literal(current_instruction().ingredients.at(1)));
   string message = current_instruction().ingredients.at(1).name;
   trace(1, label) << message;
   break;