*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_0_44.cpp
index b3bce3c83c4933ef92aba0c3a1c25e294a7a417e..c7660d809a452ac2316e5870e6fda85560ffaf5e 100644 (file)
@@ -7,7 +7,9 @@
  */
 data_block_0_44::data_block_0_44(data_block_0 & org)
   :data_block_0_label_extractor(org)
-{}
+{
+  m_has_known_type=false;
+}
 
 /*!
  *\brief Describe the block.
@@ -20,3 +22,15 @@ vector<string> data_block_0_44::get_description(){
                            label+"     "+get_typestring()+"Subprogram Call");
   return result;
 }
+
+/***************************************************************/
+/*!
+ *\brief Get called symbols.
+ *\return A vector containing the symbol names called by this
+ *        block.
+ */
+vector<string> data_block_0_44::get_called_symbols(){
+  vector<string> result;
+  result.insert(result.end(),get_labels()[0]);
+  return result;
+}