From 21531195d51b62408256b608da93dcf940e77a3c Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 20 Jun 2015 15:17:23 -0700 Subject: 1604 --- 030container.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '030container.cc') diff --git a/030container.cc b/030container.cc index 9f337251..cff5dcf1 100644 --- a/030container.cc +++ b/030container.cc @@ -156,7 +156,8 @@ case GET_ADDRESS: { reagent base = current_instruction().ingredients.at(0); long long int base_address = base.value; type_number base_type = base.types.at(0); - assert(Type[base_type].kind == container); + if (Type[base_type].kind != container) + raise << "'get' on a non-container in " << current_recipe_name () << ": " << current_instruction().to_string() << '\n' << die(); assert(is_literal(current_instruction().ingredients.at(1))); assert(scalar(ingredients.at(1))); long long int offset = ingredients.at(1).at(0); -- cgit 1.4.1-2-gfad0