Bug 907135 - Disable verification of OSI point registers in rooting analysis builds r=nbp

This commit is contained in:
Jon Coppeard 2013-08-23 16:43:38 +01:00
parent 9d5218c77b
commit 99a2f8bdd6

View File

@ -207,7 +207,10 @@ IsNullOrUndefined(MIRType type)
// Make sure registers are not modified between an instruction and
// its OsiPoint.
# ifdef JS_ION
//
// Skip this check in rooting analysis builds, which poison unrooted
// pointers on the stack.
# if defined(JS_ION) && !defined(JSGC_ROOT_ANALYSIS)
# define CHECK_OSIPOINT_REGISTERS 1
# endif
#endif