2010-11-15 14:05:44 +01:00
|
|
|
$NetBSD: patch-az,v 1.4 2010/11/15 13:05:45 adam Exp $
|
2010-03-12 09:19:38 +01:00
|
|
|
|
2010-11-15 14:05:44 +01:00
|
|
|
--- src/3rdparty/webkit/JavaScriptCore/runtime/JSValue.h.orig 2010-09-10 09:05:24.000000000 +0000
|
|
|
|
+++ src/3rdparty/webkit/JavaScriptCore/runtime/JSValue.h
|
|
|
|
@@ -491,7 +491,7 @@ namespace JSC {
|
2010-03-12 09:19:38 +01:00
|
|
|
u.asBits.tag = CellTag;
|
|
|
|
else
|
|
|
|
u.asBits.tag = EmptyValueTag;
|
|
|
|
- u.asBits.payload = reinterpret_cast<int32_t>(ptr);
|
|
|
|
+ u.asBits.payload = reinterpret_cast<intptr_t>(ptr);
|
2010-11-15 14:05:44 +01:00
|
|
|
#if ENABLE(JSC_ZOMBIES)
|
|
|
|
ASSERT(!isZombie());
|
|
|
|
#endif
|
|
|
|
@@ -503,7 +503,7 @@ namespace JSC {
|
2010-03-12 09:19:38 +01:00
|
|
|
u.asBits.tag = CellTag;
|
|
|
|
else
|
|
|
|
u.asBits.tag = EmptyValueTag;
|
|
|
|
- u.asBits.payload = reinterpret_cast<int32_t>(const_cast<JSCell*>(ptr));
|
|
|
|
+ u.asBits.payload = reinterpret_cast<intptr_t>(const_cast<JSCell*>(ptr));
|
2010-11-15 14:05:44 +01:00
|
|
|
#if ENABLE(JSC_ZOMBIES)
|
|
|
|
ASSERT(!isZombie());
|
|
|
|
#endif
|