Author: jkeenan
Date: Thu Jan  1 17:38:05 2009
New Revision: 34779

Modified:
   branches/assert_args/src/exec.c

Log:
Adding ASSERT_ARGS() to one functions in src/exec.c; running 'make headerizer'; 
storing tested results.

Modified: branches/assert_args/src/exec.c
==============================================================================
--- branches/assert_args/src/exec.c     (original)
+++ branches/assert_args/src/exec.c     Thu Jan  1 17:38:05 2009
@@ -366,6 +366,7 @@
 symbol_list_find(ARGIN(const Parrot_exec_objfile_t *obj), ARGIN(const char 
*symbol))
 {
     int i;
+    ASSERT_ARGS(symbol_list_find);
 
     for (i = 0; i < obj->symbol_count; i++)
         if (STREQ(symbol, obj->symbol_table[i].symbol))

Reply via email to