remove gimple_location_ptr ()
authorTrevor Saunders <tbsaunde+gcc@tbsaunde.org>
Mon, 5 Oct 2015 13:54:33 +0000 (13:54 +0000)
committerTrevor Saunders <tbsaunde@gcc.gnu.org>
Mon, 5 Oct 2015 13:54:33 +0000 (13:54 +0000)
gcc/ChangeLog:

2015-10-05  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

* gimple.h (gimple_location_ptr): Remove.
* tree-vrp.c (check_all_array_refs): Adjust.

From-SVN: r228485

gcc/ChangeLog
gcc/gimple.h
gcc/tree-vrp.c

index 754668dd6a737a6c7907c9aa9501bd376b905b6f..c831924e40e99492321123c17c87425a94a884d2 100644 (file)
@@ -1,3 +1,8 @@
+2015-10-05  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
+
+       * gimple.h (gimple_location_ptr): Remove.
+       * tree-vrp.c (check_all_array_refs): Adjust.
+
 2015-10-05  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
 
        * tree-ssa-operands.c (build_uses): store tree * instead of
index 30b1041663006938c63a52cfb1d576705d54872d..cfd8d2c0a3808aaca363b54c4d9705a24bf8d9a9 100644 (file)
@@ -1734,15 +1734,6 @@ gimple_location_safe (const gimple *g)
   return g ? gimple_location (g) : UNKNOWN_LOCATION;
 }
 
-/* Return pointer to location information for statement G.  */
-
-static inline const location_t *
-gimple_location_ptr (const gimple *g)
-{
-  return &g->location;
-}
-
-
 /* Set location information for statement G.  */
 
 static inline void
index 3bc3b03e6a72368bbaf3b58620a460d977e625ba..ef5ef1009589c7b40400b334179fe7f5ec76b521 100644 (file)
@@ -6717,8 +6717,9 @@ check_all_array_refs (void)
            continue;
 
          memset (&wi, 0, sizeof (wi));
-         wi.info = CONST_CAST (void *, (const void *)
-                               gimple_location_ptr (stmt));
+
+         location_t loc = gimple_location (stmt);
+         wi.info = &loc;
 
          walk_gimple_op (gsi_stmt (si),
                          check_array_bounds,