ARI fix in value.c::value_entirely_unavailable
authorJoel Brobecker <brobecker@adacore.com>
Wed, 18 Dec 2013 02:42:49 +0000 (06:42 +0400)
committerJoel Brobecker <brobecker@adacore.com>
Wed, 18 Dec 2013 02:45:49 +0000 (06:45 +0400)
gdb/ChangeLog:

        * value.c (value_entirely_unavailable): ARI fix: Move trailing
        binary operator to the next line.  No actual code change.

gdb/ChangeLog
gdb/value.c

index 71cf9c6d86873ac1826a56a561bf73cdecc04cfe..e9cb6ca2f5e5ff88b318d0c946a08bdcc9b5a667 100644 (file)
@@ -1,3 +1,8 @@
+2013-12-18  Joel Brobecker  <brobecker@adacore.com>
+
+       * value.c (value_entirely_unavailable): ARI fix: Move trailing
+       binary operator to the next line.  No actual code change.
+
 2013-12-17  Pedro Alves  <palves@redhat.com>
 
        * frame.h (enum frame_id_stack_status): New enum.
index 66adaca177161ecf9ca6de71e193f698f1fa0b09..25c9f325aad0a10ccb1ec02251fe578a9e9fe1dc 100644 (file)
@@ -380,8 +380,8 @@ value_entirely_unavailable (struct value *value)
       struct range *t = VEC_index (range_s, value->unavailable, 0);
 
       if (t->offset == 0
-         && t->length == (TARGET_CHAR_BIT *
-                          TYPE_LENGTH (value_enclosing_type (value))))
+         && t->length == (TARGET_CHAR_BIT
+                          TYPE_LENGTH (value_enclosing_type (value))))
        return 1;
     }
 
This page took 0.032821 seconds and 4 git commands to generate.