2012-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
authorSergio Durigan Junior <sergiodj@redhat.com>
Tue, 24 Apr 2012 18:10:31 +0000 (18:10 +0000)
committerSergio Durigan Junior <sergiodj@redhat.com>
Tue, 24 Apr 2012 18:10:31 +0000 (18:10 +0000)
* observer.sh: Conditionally declare `args', thus cleaning up
unused instances of this variable.

gdb/ChangeLog
gdb/observer.sh

index 5b2b105..991792f 100644 (file)
@@ -1,3 +1,8 @@
+2012-04-24  Sergio Durigan Junior  <sergiodj@redhat.com>
+
+       * observer.sh: Conditionally declare `args', thus cleaning up
+       unused instances of this variable.
+
 2012-04-24  Yao Qi  <yao@codesourcery.com>
 
        Revert this patch to allow breakpoint always-inserted
index b5c49ac..c98afd0 100755 (executable)
@@ -136,8 +136,17 @@ static void
 observer_${event}_notification_stub (const void *data, const void *args_data)
 {
   observer_${event}_ftype *notify = (observer_${event}_ftype *) data;
+EOF
+
+       notify_args=`echo ${actual} | sed -e 's/\([a-z0-9_][a-z0-9_]*\)/args->\1/g'`
+
+       if test ! -z "${notify_args}"; then
+           cat<<EOF >>${otmp}
   const struct ${event}_args *args = args_data;
-  notify (`echo ${actual} | sed -e 's/\([a-z0-9_][a-z0-9_]*\)/args->\1/g'`);
+EOF
+       fi
+       cat <<EOF >>${otmp}
+  notify (${notify_args});
 }
 
 struct observer *