[m-rev.] trivial diff: fix missing MR_ prefixes
Fergus Henderson
fjh at cs.mu.OZ.AU
Sun Apr 8 17:11:52 AEST 2001
Estimated hours taken: 0.1
Branches: main, release
runtime/mercury_heap.h:
Add a couple of missing MR_ prefixes that were omitted
in Zoltan's last change.
XXX remember to check that this diff includes all
the relevant files that have been changed!
Workspace: /home/hg/fjh/ws-hg3/mercury
Index: runtime/mercury_heap.h
===================================================================
RCS file: /home/mercury1/repository/mercury/runtime/mercury_heap.h,v
retrieving revision 1.20
diff -u -d -r1.20 mercury_heap.h
--- runtime/mercury_heap.h 2001/02/21 05:53:43 1.20
+++ runtime/mercury_heap.h 2001/04/08 07:03:20
@@ -179,14 +179,14 @@
proclabel, (type))
#define MR_incr_hp_type(dest, typename) \
do { \
- Word tmp; \
+ MR_Word tmp; \
MR_tag_incr_hp(tmp, MR_mktag(0), \
(MR_bytes_to_words(sizeof(typename)))); \
(dest) = (typename *) tmp; \
} while (0)
#define MR_incr_hp_type_msg(dest, typename, proclabel, type) \
do { \
- Word tmp; \
+ MR_Word tmp; \
MR_tag_incr_hp_msg(tmp, MR_mktag(0), \
(MR_bytes_to_words(sizeof(typename))), \
proclabel, (type)); \
--
Fergus Henderson <fjh at cs.mu.oz.au> | "I have always known that the pursuit
| of excellence is a lethal habit"
WWW: <http://www.cs.mu.oz.au/~fjh> | -- the last words of T. S. Garp.
--------------------------------------------------------------------------
mercury-reviews mailing list
post: mercury-reviews at cs.mu.oz.au
administrative address: owner-mercury-reviews at cs.mu.oz.au
unsubscribe: Address: mercury-reviews-request at cs.mu.oz.au Message: unsubscribe
subscribe: Address: mercury-reviews-request at cs.mu.oz.au Message: subscribe
--------------------------------------------------------------------------
More information about the reviews
mailing list