* ch-exp.c (parse_named_record_element): Avoid aggregrate
authorJeff Law <law@redhat.com>
Sun, 3 Dec 1995 19:59:21 +0000 (19:59 +0000)
committerJeff Law <law@redhat.com>
Sun, 3 Dec 1995 19:59:21 +0000 (19:59 +0000)
        initializations for automatic variables.

        * hppa-tdep.c (hppa_alignof): Fix typo in last change.

Fixes minor build problems.

gdb/ChangeLog
gdb/ch-exp.c
gdb/hppa-tdep.c

index 844cc044807e15c4875d5b98fcdec017704ed61e..3a69ee1a725b286c7d708a886193cda2b1722392 100644 (file)
@@ -1,3 +1,10 @@
+Sun Dec  3 11:59:21 1995  Jeffrey A. Law  <law@cygnus.com>
+
+       * ch-exp.c (parse_named_record_element): Avoid aggregrate
+       initializations for automatic variables.
+
+       * hppa-tdep.c (hppa_alignof): Fix typo in last change.
+
 Sat Dec  2 19:32:57 1995  Fred Fish  <fnf@cygnus.com>
 
        * symfile.c (global_psymbols, static_psymbols):  Remove, unused.
index 4ce29821ed08b82fb0fc314987917dfd778b3474..6c2471f72986a63b19b0f1d62d38b21c37947b58 100644 (file)
@@ -488,7 +488,9 @@ parse_call ()
 static void
 parse_named_record_element ()
 {
-  struct stoken label = PEEK_LVAL ().sval;
+  struct stoken label;
+
+  label = PEEK_LVAL ().sval;
   expect (FIELD_NAME, "expected a field name here `%s'", lexptr);
   if (check_token (','))
     parse_named_record_element ();
index 27f4eb42bd5c03f6778bec3ef51344890388ca22..4fee8b078d197310d74770e9784bd7ca7c401e3a 100644 (file)
@@ -1733,7 +1733,7 @@ hppa_alignof (type)
      struct type *type;
 {
   int max_align, align, i;
-  CHECK_TYPEDEf (type);
+  CHECK_TYPEDEF (type);
   switch (TYPE_CODE (type))
     {
     case TYPE_CODE_PTR: