[m-rev.] trivial diff: fix initialization of MR_main_parent_proc_layout

Julien Fischer juliensf at csse.unimelb.edu.au
Tue Oct 3 12:56:56 AEST 2006


Estimated hours taken: 0.1
Branches: main

runtime/mercury_deep_profiling.c:
 	Conform to the recent change in the definition of MR_Long_Lval.

 	Fix the initializer for MR_main_parent_proc_layout: some of the
 	components were in the wrong order.
Julien.

Index: runtime/mercury_deep_profiling.c
===================================================================
RCS file: /home/mercury/mercury1/repository/mercury/runtime/mercury_deep_profiling.c,v
retrieving revision 1.19
diff -u -r1.19 mercury_deep_profiling.c
--- runtime/mercury_deep_profiling.c	16 Sep 2005 08:54:45 -0000	1.19
+++ runtime/mercury_deep_profiling.c	2 Oct 2006 09:10:21 -0000
@@ -60,7 +60,7 @@

  MR_Proc_Layout_User MR_main_parent_proc_layout =
  {
-    { MR_do_not_reached, MR_DETISM_DET, -1, MR_LONG_LVAL_TYPE_UNKNOWN },
+    { MR_do_not_reached, { MR_LONG_LVAL_TYPE_UNKNOWN }, -1, MR_DETISM_DET },
      { MR_PREDICATE, "Mercury runtime", "Mercury runtime",
          "Mercury runtime", 0, 0 },
      NULL,

--------------------------------------------------------------------------
mercury-reviews mailing list
Post messages to:       mercury-reviews at csse.unimelb.edu.au
Administrative Queries: owner-mercury-reviews at csse.unimelb.edu.au
Subscriptions:          mercury-reviews-request at csse.unimelb.edu.au
--------------------------------------------------------------------------



More information about the reviews mailing list