Merging with Edouard's changes
authorMario de Sousa <msousa@fe.up.pt>
Tue, 17 May 2011 10:35:12 +0100
changeset 299 de1be61482fa
parent 298 022a874149ce (current diff)
parent 294 aae14da3c296 (diff)
child 300 092a6fa4926f
child 302 d120740a6b58
Merging with Edouard's changes
--- a/absyntax_utils/search_il_operand_type.hh	Tue May 17 10:34:00 2011 +0100
+++ b/absyntax_utils/search_il_operand_type.hh	Tue May 17 10:35:12 2011 +0100
@@ -48,7 +48,7 @@
 class search_il_operand_type_c {
 
   private:
-  search_varfb_instance_type_c::search_varfb_instance_type_c search_varfb_instance_type;
+    search_varfb_instance_type_c search_varfb_instance_type;
     search_constant_type_c search_constant_type;
 
   public:
--- a/stage4/generate_c/generate_var_list.cc	Tue May 17 10:34:00 2011 +0100
+++ b/stage4/generate_c/generate_var_list.cc	Tue May 17 10:35:12 2011 +0100
@@ -110,6 +110,7 @@
       variable_vtc,
       external_vtc,
       located_input_vtc,
+      located_memory_vtc,
       located_output_vtc,
       array_vtc,
       structure_vtc,
@@ -216,6 +217,9 @@
         case located_input_vtc:
           s4o.print("IN");
           break;
+        case located_memory_vtc:
+          s4o.print("MEM");
+          break;
         case located_output_vtc:
           s4o.print("OUT");
           break;
@@ -484,6 +488,8 @@
 	  locationtype_t location_type = search_location_type.get_location_type(symbol->location);
 	  if (location_type == input_lt)
         this->current_var_type_category = located_input_vtc;
+      else if (location_type == memory_lt)
+        this->current_var_type_category = located_memory_vtc;
       else if (location_type == output_lt)
         this->current_var_type_category = located_output_vtc;