| Server IP : 82.208.35.60 / Your IP : 216.73.216.238 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/games/oolite/files/ |
Upload File : |
# HG changeset patch
# User Ehsan Akhgari <ehsan@mozilla.com>
# Date 1308517488 14400
# Node ID 284ebc48b2cb8e35dc04482ede700e717d8d214f
# Parent cecc5adfc44068fb6f11b9baa78cb5fddc100b27
Bug 662961 - Silence the clang warnings issued because of alignment requirements increase when compiling jsstr.cpp; r=Waldo
--- deps/mozilla/js/src/jsstr.cpp.orig 2013-05-25 14:44:33 UTC
+++ deps/mozilla/js/src/jsstr.cpp
@@ -3147,7 +3147,7 @@
*/
#define R(c) { \
BUILD_LENGTH_AND_FLAGS(1, JSString::FLAT | JSString::ATOMIZED), \
- { (jschar *)(((char *)(unitStringTable + (c))) + \
+ { (jschar *)(uintptr_t(unitStringTable + (c)) + \
offsetof(JSString, inlineStorage)) }, \
{ {(c), 0x00} } }
@@ -3207,7 +3207,7 @@
*/
#define R(c) { \
BUILD_LENGTH_AND_FLAGS(2, JSString::FLAT | JSString::ATOMIZED), \
- { (jschar *)(((char *)(length2StringTable + (c))) + \
+ { (jschar *)(uintptr_t(length2StringTable + (c)) + \
offsetof(JSString, inlineStorage)) }, \
{ {FROM_SMALL_CHAR((c) >> 6), FROM_SMALL_CHAR((c) & 0x3F), 0x00} } }
@@ -3240,7 +3240,7 @@
*/
#define R(c) { \
BUILD_LENGTH_AND_FLAGS(3, JSString::FLAT | JSString::ATOMIZED), \
- { (jschar *)(((char *)(hundredStringTable + ((c) - 100))) + \
+ { (jschar *)(uintptr_t(hundredStringTable + ((c) - 100)) + \
offsetof(JSString, inlineStorage)) }, \
{ {((c) / 100) + '0', ((c) / 10 % 10) + '0', ((c) % 10) + '0', 0x00} } }