Fix 2 clang warnings.
authorMartin Liska <mliska@suse.cz>
Mon, 1 Jul 2019 08:08:29 +0000 (10:08 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Mon, 1 Jul 2019 08:08:29 +0000 (08:08 +0000)
2019-07-01  Martin Liska  <mliska@suse.cz>

* edit-context.c (test_applying_fixits_unreadable_file): Do not
use () for a constructor call.
(test_applying_fixits_line_out_of_range): Likewise.
* ggc-page.c (alloc_page): Use (void *) for %p printf format
argument.
(free_page): Likewise.

From-SVN: r272846

gcc/ChangeLog
gcc/edit-context.c
gcc/ggc-page.c

index b01f45f0cc1ed1dc1126152bbda39193139bd3f5..fc6e6ef32a50d959b7f77be43b360065fac15588 100644 (file)
@@ -1,3 +1,12 @@
+2019-07-01  Martin Liska  <mliska@suse.cz>
+
+       * edit-context.c (test_applying_fixits_unreadable_file): Do not
+       use () for a constructor call.
+       (test_applying_fixits_line_out_of_range): Likewise.
+       * ggc-page.c (alloc_page): Use (void *) for %p printf format
+       argument.
+       (free_page): Likewise.
+
 2019-07-01  Vladislav Ivanishin <vlad@ispras.ru>
 
         * gdbhooks.py (GdbPrettyPrinters.add_printer_for_types): Reorder
index d3246ab03348368d9fa25b2800b175d969da6128..93d10664ae9cc6eec71ea0b3ac05ec29eb5da00e 100644 (file)
@@ -1639,7 +1639,7 @@ static void
 test_applying_fixits_unreadable_file ()
 {
   const char *filename = "this-does-not-exist.txt";
-  line_table_test ltt ();
+  line_table_test ltt;
   linemap_add (line_table, LC_ENTER, false, filename, 1);
 
   location_t loc = linemap_position_for_column (line_table, 1);
@@ -1670,7 +1670,7 @@ test_applying_fixits_line_out_of_range ()
   const char *old_content = "One-liner file\n";
   temp_source_file tmp (SELFTEST_LOCATION, ".txt", old_content);
   const char *filename = tmp.get_filename ();
-  line_table_test ltt ();
+  line_table_test ltt;
   linemap_add (line_table, LC_ENTER, false, filename, 2);
 
   /* Try to insert a string in line 2.  */
index 7066ef2c488ef5bc5a03eadc4b9d64802affede7..a95ff466704eee058609e41cc403316d784e555e 100644 (file)
@@ -943,8 +943,8 @@ alloc_page (unsigned order)
   if (GGC_DEBUG_LEVEL >= 2)
     fprintf (G.debug_file,
             "Allocating page at %p, object size=%lu, data %p-%p\n",
-            (void *) entry, (unsigned long) OBJECT_SIZE (order), page,
-            page + entry_size - 1);
+            (void *) entry, (unsigned long) OBJECT_SIZE (order),
+            (void *) page, (void *) (page + entry_size - 1));
 
   return entry;
 }
@@ -977,7 +977,7 @@ free_page (page_entry *entry)
   if (GGC_DEBUG_LEVEL >= 2)
     fprintf (G.debug_file,
             "Deallocating page at %p, data %p-%p\n", (void *) entry,
-            entry->page, entry->page + entry->bytes - 1);
+            (void *) entry->page, (void *) (entry->page + entry->bytes - 1));
 
   /* Mark the page as inaccessible.  Discard the handle to avoid handle
      leak.  */