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
Родитель 9d5218c77b
Коммит 99a2f8bdd6
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -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