Backed out changeset 0c030f97a04f (bug 1144366) for being on top of patches being backed out

CLOSED TREE
This commit is contained in:
Phil Ringnalda
2015-03-28 10:39:56 -07:00
parent 529df7748d
commit 1a1c158706
759 changed files with 50565 additions and 50565 deletions

View File

@@ -11,7 +11,7 @@
namespace js {
extern void*
extern void *
GetNativeStackBaseImpl();
inline uintptr_t
@@ -19,7 +19,7 @@ GetNativeStackBase()
{
uintptr_t stackBase = reinterpret_cast<uintptr_t>(GetNativeStackBaseImpl());
MOZ_ASSERT(stackBase != 0);
MOZ_ASSERT(stackBase % sizeof(void*) == 0);
MOZ_ASSERT(stackBase % sizeof(void *) == 0);
return stackBase;
}