Change "argh" to something more confidence-inspiring.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@187 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/vg_symtab2.c b/vg_symtab2.c
index 35bd47e..25d0ce6 100644
--- a/vg_symtab2.c
+++ b/vg_symtab2.c
@@ -955,7 +955,7 @@
                      } else {
                         VG_(printf)("unhandled stabs case: N_FUN start %d %s\n",
                                    i, (stabstr + stab[i+1].n_un.n_strx) );
-                        VG_(panic)("argh");
+                        VG_(panic)("unhandled N_FUN stabs case");
                      }
                      break;
 
@@ -967,13 +967,13 @@
                      } else {
                         VG_(printf)("unhandled N_SOL stabs case: %d %d %d", 
                                     stab[i+1].n_type, i, n_stab_entries);
-                        VG_(panic)("argh");
+                        VG_(panic)("unhandled N_SOL stabs case");
                      }
 
                   default:
                      VG_(printf)("unhandled stabs case: %d %d", 
                                  stab[i+1].n_type,i);
-                     VG_(panic)("argh");
+                     VG_(panic)("unhandled (other) stabs case");
                }
             }