Skip to content

Commit f176a43

Browse files
committed
NO_PROFINFO is 0 (#2426)
(cherry picked from commit d49e464)
1 parent dda56b0 commit f176a43

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ocaml/runtime4/caml/mlvalues.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,7 @@ originally built for Spacetime profiling, hence the odd name.
126126
#ifdef WITH_PROFINFO
127127
#define PROFINFO_SHIFT (Gen_profinfo_shift(PROFINFO_WIDTH))
128128
#define PROFINFO_MASK (Gen_profinfo_mask(PROFINFO_WIDTH))
129-
/* Use NO_PROFINFO to debug problems with profinfo macros */
130-
#define NO_PROFINFO 0xff
129+
#define NO_PROFINFO 0
131130
#define Hd_no_profinfo(hd) ((hd) & ~(PROFINFO_MASK << PROFINFO_SHIFT))
132131
#define Wosize_hd(hd) ((mlsize_t) ((Hd_no_profinfo(hd)) >> 10))
133132
#define Profinfo_hd(hd) (Gen_profinfo_hd(PROFINFO_WIDTH, hd))

0 commit comments

Comments
 (0)