2000-06-15 Michael Snyder <msnyder@seadog.cygnus.com>
authorMichael Snyder <msnyder@vmware.com>
Thu, 15 Jun 2000 18:54:48 +0000 (18:54 +0000)
committerMichael Snyder <msnyder@vmware.com>
Thu, 15 Jun 2000 18:54:48 +0000 (18:54 +0000)
        * valops.c (value_cast): Break up long lines.

gdb/ChangeLog
gdb/valops.c

index ca565c51fbbf238e8070bc23718cb581bd3c9ced..46b33253a577103d2000647427dcdcf45994113e 100644 (file)
@@ -1,3 +1,7 @@
+2000-06-15  Michael Snyder  <msnyder@seadog.cygnus.com>
+
+       * valops.c (value_cast): Break up long lines.
+
 2000-06-14  Jim Blandy  <jimb@redhat.com>
 
        * dwarf2read.c (dump_die): Use the proper printf format for
index 16241bfa2c5aa1277bdcef73abae19599e26ba84..d5171a6a9c82deb99b8e5bd83826c444dd616aaa 100644 (file)
@@ -273,7 +273,8 @@ value_cast (type, arg2)
              /* With HP aCC, pointers to data members have a bias */
            case TYPE_CODE_MEMBER:
              retvalp = value_from_longest (type, value_as_long (arg2));
-             ptr = (unsigned int *) VALUE_CONTENTS (retvalp);  /* force evaluation */
+             /* force evaluation */
+             ptr = (unsigned int *) VALUE_CONTENTS (retvalp);  
              *ptr &= ~0x20000000;      /* zap 29th bit to remove bias */
              return retvalp;
 
@@ -286,7 +287,8 @@ value_cast (type, arg2)
            }
        }
       longest = value_as_long (arg2);
-      return value_from_longest (type, convert_to_boolean ? (LONGEST) (longest ? 1 : 0) : longest);
+      return value_from_longest (type, convert_to_boolean ? 
+                                (LONGEST) (longest ? 1 : 0) : longest);
     }
   else if (TYPE_LENGTH (type) == TYPE_LENGTH (type2))
     {
This page took 0.027747 seconds and 4 git commands to generate.