Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/6e0e3ea81f44c294d5f7300eb7a92483babcae49
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/6e0e3ea81f44c294d5f7300eb7a92483babcae49
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/6e0e3ea81f44c294d5f7300eb7a92483babcae49

The branch, master has been updated
       via  6e0e3ea81f44c294d5f7300eb7a92483babcae49 (commit)
      from  8319ead5304bb04e90dd7f473ac60e5c2a58fdeb (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=6e0e3ea81f44c294d5f7300eb7a92483babcae49
commit 6e0e3ea81f44c294d5f7300eb7a92483babcae49
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    Duktape: Squash armhf warnings.
    
    content/handlers/javascript/duktape/duktape.c: In function 
'duk_resolve_nonbound_function':
    content/handlers/javascript/duktape/duktape.c:14609:25: warning: cast 
increases required alignment of target type [-Wcast-align]
        duk_push_tval(thr, &((duk_hboundfunc *) h)->target);
                             ^
    content/handlers/javascript/duktape/duktape.c: In function 
'duk_bi_function_prototype_bind':
    content/handlers/javascript/duktape/duktape.c:32423:20: warning: cast 
increases required alignment of target type [-Wcast-align]
        h_boundtarget = (duk_hboundfunc *) h_target;
                        ^
    content/handlers/javascript/duktape/duktape.c: In function 
'duk_free_hobject':
    content/handlers/javascript/duktape/duktape.c:46072:23: warning: cast 
increases required alignment of target type [-Wcast-align]
       duk_hboundfunc *f = (duk_hboundfunc *) h;
                           ^
    content/handlers/javascript/duktape/duktape.c: In function 
'duk__mark_hobject':
    content/handlers/javascript/duktape/duktape.c:47889:23: warning: cast 
increases required alignment of target type [-Wcast-align]
       duk_hboundfunc *f = (duk_hboundfunc *) h;
                           ^
    content/handlers/javascript/duktape/duktape.c: In function 
'duk_hobject_refcount_finalize_norz':
    content/handlers/javascript/duktape/duktape.c:49866:23: warning: cast 
increases required alignment of target type [-Wcast-align]
       duk_hboundfunc *f = (duk_hboundfunc *) h;
                           ^
    content/handlers/javascript/duktape/duktape.c: In function 
'duk__handle_bound_chain_for_call':
    content/handlers/javascript/duktape/duktape.c:61533:14: warning: cast 
increases required alignment of target type [-Wcast-align]
        h_bound = (duk_hboundfunc *) func;
                  ^
    content/handlers/javascript/duktape/duktape.c: In function 
'duk_js_instanceof':
    content/handlers/javascript/duktape/duktape.c:78165:24: warning: cast 
increases required alignment of target type [-Wcast-align]
       duk_push_tval(thr, &((duk_hboundfunc *) func)->target);
                            ^

diff --git a/content/handlers/javascript/duktape/duk_config.h 
b/content/handlers/javascript/duktape/duk_config.h
index 06c3b86..7ee0b13 100644
--- a/content/handlers/javascript/duktape/duk_config.h
+++ b/content/handlers/javascript/duktape/duk_config.h
@@ -891,7 +891,7 @@
 #define DUK_USE_ARCH_STRING "arm32"
 /* Byte order varies, so rely on autodetect. */
 #if !defined(DUK_USE_ALIGN_BY)
-#define DUK_USE_ALIGN_BY 4
+#define DUK_USE_ALIGN_BY 8
 #endif
 #define DUK_USE_PACKED_TVAL
 #define DUK_F_PACKED_TVAL_PROVIDED


-----------------------------------------------------------------------

Summary of changes:
 content/handlers/javascript/duktape/duk_config.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/handlers/javascript/duktape/duk_config.h 
b/content/handlers/javascript/duktape/duk_config.h
index 06c3b86..7ee0b13 100644
--- a/content/handlers/javascript/duktape/duk_config.h
+++ b/content/handlers/javascript/duktape/duk_config.h
@@ -891,7 +891,7 @@
 #define DUK_USE_ARCH_STRING "arm32"
 /* Byte order varies, so rely on autodetect. */
 #if !defined(DUK_USE_ALIGN_BY)
-#define DUK_USE_ALIGN_BY 4
+#define DUK_USE_ALIGN_BY 8
 #endif
 #define DUK_USE_PACKED_TVAL
 #define DUK_F_PACKED_TVAL_PROVIDED


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to