summaryrefslogtreecommitdiff
path: root/src/jit/jit.h
diff options
context:
space:
mode:
authorPeter Kukol <peterk@vmware.com>2016-09-06 11:28:30 -0700
committerPeter Kukol <peterku@microsoft.com>2016-09-08 13:57:02 -0700
commitaf6b1ce7d730a7c58c64cb63f3c44265484c5bd2 (patch)
treefb350b9d3df597591d5d5b60b6d137cae724fab6 /src/jit/jit.h
parentd54da68a2ba1c1b6345bf66931621b17e1d97f9e (diff)
downloadcoreclr-af6b1ce7d730a7c58c64cb63f3c44265484c5bd2.tar.gz
coreclr-af6b1ce7d730a7c58c64cb63f3c44265484c5bd2.tar.bz2
coreclr-af6b1ce7d730a7c58c64cb63f3c44265484c5bd2.zip
Fix some timing code bit rot, plus minor cleanup.
Diffstat (limited to 'src/jit/jit.h')
-rw-r--r--src/jit/jit.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/jit/jit.h b/src/jit/jit.h
index 7bf5cd4051..f917acd48f 100644
--- a/src/jit/jit.h
+++ b/src/jit/jit.h
@@ -466,15 +466,15 @@ typedef ptrdiff_t ssize_t;
#define MEASURE_PTRTAB_SIZE 0 // Collect stats about GC pointer table allocations.
#define EMITTER_STATS 0 // Collect stats on the emitter.
-#define VERBOSE_SIZES 0 // Always display GC info sizes. If set, DISPLAY_SIZES must also be set.
-#define VERBOSE_VERIFY 0 // Dump additional information when verifying code. Useful to debug verification bugs.
+#define VERBOSE_SIZES 0 // Always display GC info sizes. If set, DISPLAY_SIZES must also be set.
+#define VERBOSE_VERIFY 0 // Dump additional information when verifying code. Useful to debug verification bugs.
#ifdef DEBUG
-#define MEASURE_MEM_ALLOC 1 // Collect memory allocation stats.
-#define LOOP_HOIST_STATS 1 // Collect loop hoisting stats.
+#define MEASURE_MEM_ALLOC 1 // Collect memory allocation stats.
+#define LOOP_HOIST_STATS 1 // Collect loop hoisting stats.
#else
-#define MEASURE_MEM_ALLOC 0 // You can set this to 1 to get memory stats in retail, as well
-#define LOOP_HOIST_STATS 0 // You can set this to 1 to get loop hoist stats in retail, as well
+#define MEASURE_MEM_ALLOC 0 // You can set this to 1 to get memory stats in retail, as well
+#define LOOP_HOIST_STATS 0 // You can set this to 1 to get loop hoist stats in retail, as well
#endif
/*****************************************************************************/