aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe De Muyter <phdm@info.ucl.ac.be>1997-09-05 22:03:37 +0200
committerJeff Law <law@gcc.gnu.org>1997-09-05 14:03:37 -0600
commitf5ffa99918cd283888b3d535fe96a72ab99ff735 (patch)
tree590385bda617df3903b67875ef215f9ebc02aca5
parentacceac1aeafefeda2ede951bc34b6ca8795fa929 (diff)
downloadgcc-f5ffa99918cd283888b3d535fe96a72ab99ff735.zip
gcc-f5ffa99918cd283888b3d535fe96a72ab99ff735.tar.gz
gcc-f5ffa99918cd283888b3d535fe96a72ab99ff735.tar.bz2
integrate.c (save_for_inline_copying): Use 0, not NULL_PTR, as initial value for real_label_map.
* integrate.c (save_for_inline_copying): Use 0, not NULL_PTR, as initial value for real_label_map. (copy_for_inline): Likewise. Brought over from the FSF. From-SVN: r15116
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/integrate.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b92e210..c28d70d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+Fri Sep 5 14:04:59 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
+
+ * integrate.c (save_for_inline_copying): Use 0, not NULL_PTR,
+ as initial value for real_label_map.
+ (copy_for_inline): Likewise.
+
Fri Sep 5 13:36:44 1997 J"orn Rennecke <amylaar@cygnus.co.uk>
* sched.c (update_flow_info) When looking if to set found_split_dest
diff --git a/gcc/integrate.c b/gcc/integrate.c
index 217d24b..c85303b 100644
--- a/gcc/integrate.c
+++ b/gcc/integrate.c
@@ -416,7 +416,7 @@ save_for_inline_copying (fndecl)
/* The pointer used to track the true location of the memory used
for LABEL_MAP. */
- rtx *real_label_map = NULL_PTR;
+ rtx *real_label_map = 0;
/* Make and emit a return-label if we have not already done so.
Do this before recording the bounds on label numbers. */
@@ -1252,7 +1252,7 @@ expand_inline_function (fndecl, parms, target, ignore, type,
/* The pointer used to track the true location of the memory used
for MAP->LABEL_MAP. */
- rtx *real_label_map = NULL_PTR;
+ rtx *real_label_map = 0;
/* Allow for equivalences of the pseudos we make for virtual fp and ap. */
max_regno = MAX_REGNUM (header) + 3;