diff --git a/src/library.js b/src/library.js index 59f530db8f668..711aa2dbec503 100644 --- a/src/library.js +++ b/src/library.js @@ -393,13 +393,12 @@ addToLibrary({ // Used to implement the native `abort` symbol. Note that we use the // JavaScript `abort` helper in order to implement this function, but we use a // distinct name here to avoid confusing the two. - _abort_js: () => { + _abort_js: () => #if ASSERTIONS - abort('native code called abort()'); + abort('native code called abort()'), #else - abort(''); + abort(''), #endif - }, #endif // This object can be modified by the user during startup, which affects @@ -443,9 +442,8 @@ addToLibrary({ // assert.h // ========================================================================== - __assert_fail: (condition, filename, line, func) => { - abort(`Assertion failed: ${UTF8ToString(condition)}, at: ` + [filename ? UTF8ToString(filename) : 'unknown filename', line, func ? UTF8ToString(func) : 'unknown function']); - }, + __assert_fail: (condition, filename, line, func) => + abort(`Assertion failed: ${UTF8ToString(condition)}, at: ` + [filename ? UTF8ToString(filename) : 'unknown filename', line, func ? UTF8ToString(func) : 'unknown function']), #endif #if STACK_OVERFLOW_CHECK >= 2 @@ -662,9 +660,7 @@ addToLibrary({ $strError: (errno) => errno + '', #else $strError__deps: ['strerror', '$UTF8ToString'], - $strError: (errno) => { - return UTF8ToString(_strerror(errno)); - }, + $strError: (errno) => UTF8ToString(_strerror(errno)), #endif #if PROXY_POSIX_SOCKETS == 0 @@ -681,9 +677,8 @@ addToLibrary({ } return (b[0] | (b[1] << 8) | (b[2] << 16) | (b[3] << 24)) >>> 0; }, - $inetNtop4: (addr) => { - return (addr & 0xff) + '.' + ((addr >> 8) & 0xff) + '.' + ((addr >> 16) & 0xff) + '.' + ((addr >> 24) & 0xff) - }, + $inetNtop4: (addr) => + (addr & 0xff) + '.' + ((addr >> 8) & 0xff) + '.' + ((addr >> 16) & 0xff) + '.' + ((addr >> 24) & 0xff), $inetPton6__deps: ['htons', '$jstoi_q'], $inetPton6: (str) => { var words; @@ -1724,9 +1719,7 @@ addToLibrary({ return ___cxa_throw(ex, 0, 0); }, - _Unwind_DeleteException: (ex) => { - err('TODO: Unwind_DeleteException'); - }, + _Unwind_DeleteException: (ex) => err('TODO: Unwind_DeleteException'), #endif // special runtime support @@ -1743,29 +1736,28 @@ addToLibrary({ }, #endif - $getExecutableName: () => { #if MINIMAL_RUNTIME // MINIMAL_RUNTIME does not have a global runtime variable thisProgram + $getExecutableName: () => { #if ENVIRONMENT_MAY_BE_NODE if (ENVIRONMENT_IS_NODE && process.argv.length > 1) { return process.argv[1].replace(/\\/g, '/'); } #endif return "./this.program"; + }, #else - return thisProgram || './this.program'; + $getExecutableName: () => thisProgram || './this.program', #endif - }, - $listenOnce: (object, event, func) => { + $listenOnce: (object, event, func) => #if MIN_CHROME_VERSION < 55 || MIN_FIREFOX_VERSION < 50 // https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener object.addEventListener(event, function handler() { func(); object.removeEventListener(event, handler); - }); + }), #else - object.addEventListener(event, func, { 'once': true }); + object.addEventListener(event, func, { 'once': true }), #endif - }, // Receives a Web Audio context plus a set of elements to listen for user // input events on, and registers a context resume() for them. This lets @@ -1999,9 +1991,7 @@ addToLibrary({ // Use program_invocation_short_name and program_invocation_name in compiled // programs. This function is for implementing them. _emscripten_get_progname__deps: ['$getExecutableName', '$stringToUTF8'], - _emscripten_get_progname: (str, len) => { - stringToUTF8(getExecutableName(), str, len); - }, + _emscripten_get_progname: (str, len) => stringToUTF8(getExecutableName(), str, len), emscripten_console_log: (str) => { #if ASSERTIONS diff --git a/src/library_browser.js b/src/library_browser.js index 4f636e559d866..dbfdacea10125 100644 --- a/src/library_browser.js +++ b/src/library_browser.js @@ -738,9 +738,7 @@ var LibraryBrowser = { }, emscripten_set_canvas_size__proxy: 'sync', - emscripten_set_canvas_size: (width, height) => { - Browser.setCanvasSize(width, height); - }, + emscripten_set_canvas_size: (width, height) => Browser.setCanvasSize(width, height), emscripten_get_canvas_size__proxy: 'sync', emscripten_get_canvas_size: (width, height, isFullscreen) => { diff --git a/src/library_egl.js b/src/library_egl.js index af1e865bdcede..75fa239e8120d 100644 --- a/src/library_egl.js +++ b/src/library_egl.js @@ -146,15 +146,13 @@ var LibraryEGL = { // EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigs(EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config); eglGetConfigs__proxy: 'sync', - eglGetConfigs: (display, configs, config_size, numConfigs) => { - return EGL.chooseConfig(display, 0, configs, config_size, numConfigs); - }, + eglGetConfigs: (display, configs, config_size, numConfigs) => + EGL.chooseConfig(display, 0, configs, config_size, numConfigs), // EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config); eglChooseConfig__proxy: 'sync', - eglChooseConfig: (display, attrib_list, configs, config_size, numConfigs) => { - return EGL.chooseConfig(display, attrib_list, configs, config_size, numConfigs); - }, + eglChooseConfig: (display, attrib_list, configs, config_size, numConfigs) => + EGL.chooseConfig(display, attrib_list, configs, config_size, numConfigs), // EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value); eglGetConfigAttrib__proxy: 'sync', diff --git a/src/library_eventloop.js b/src/library_eventloop.js index ae9fa2226d565..e91845680e539 100644 --- a/src/library_eventloop.js +++ b/src/library_eventloop.js @@ -515,14 +515,10 @@ LibraryJSEventLoop = { }, emscripten_pause_main_loop__deps: ['$MainLoop'], - emscripten_pause_main_loop: () => { - MainLoop.pause(); - }, + emscripten_pause_main_loop: () => MainLoop.pause(), emscripten_resume_main_loop__deps: ['$MainLoop'], - emscripten_resume_main_loop: () => { - MainLoop.resume(); - }, + emscripten_resume_main_loop: () => MainLoop.resume(), _emscripten_push_main_loop_blocker__deps: ['$MainLoop'], _emscripten_push_main_loop_blocker: (func, arg, name) => { diff --git a/src/library_html5.js b/src/library_html5.js index cd82337eb24cb..4f2457655fe31 100644 --- a/src/library_html5.js +++ b/src/library_html5.js @@ -914,9 +914,8 @@ var LibraryHTML5 = { emscripten_set_devicemotion_callback_on_thread__proxy: 'sync', emscripten_set_devicemotion_callback_on_thread__deps: ['$registerDeviceMotionEventCallback'], - emscripten_set_devicemotion_callback_on_thread: (userData, useCapture, callbackfunc, targetThread) => { - return registerDeviceMotionEventCallback({{{ cDefs.EMSCRIPTEN_EVENT_TARGET_WINDOW }}}, userData, useCapture, callbackfunc, {{{ cDefs.EMSCRIPTEN_EVENT_DEVICEMOTION }}}, "devicemotion", targetThread); - }, + emscripten_set_devicemotion_callback_on_thread: (userData, useCapture, callbackfunc, targetThread) => + registerDeviceMotionEventCallback({{{ cDefs.EMSCRIPTEN_EVENT_TARGET_WINDOW }}}, userData, useCapture, callbackfunc, {{{ cDefs.EMSCRIPTEN_EVENT_DEVICEMOTION }}}, "devicemotion", targetThread), emscripten_get_devicemotion_status__proxy: 'sync', emscripten_get_devicemotion_status__deps: ['$JSEvents'], diff --git a/src/library_html5_webgl.js b/src/library_html5_webgl.js index a99bfec219693..64dec4c0d43b1 100644 --- a/src/library_html5_webgl.js +++ b/src/library_html5_webgl.js @@ -444,9 +444,8 @@ var LibraryHtml5WebGL = { }, emscripten_is_webgl_context_lost__proxy: 'sync_on_webgl_context_handle_thread', - emscripten_is_webgl_context_lost: (contextHandle) => { - return !GL.contexts[contextHandle] || GL.contexts[contextHandle].GLctx.isContextLost(); // No context ~> lost context. - }, + emscripten_is_webgl_context_lost: (contextHandle) => + !GL.contexts[contextHandle] || GL.contexts[contextHandle].GLctx.isContextLost(), // No context ~> lost context. emscripten_webgl_get_supported_extensions__proxy: 'sync_on_current_webgl_context_thread', emscripten_webgl_get_supported_extensions__deps: ['$stringToNewUTF8'], diff --git a/src/library_sdl.js b/src/library_sdl.js index a0a0edb4c6c19..ff5a5ace624ca 100644 --- a/src/library_sdl.js +++ b/src/library_sdl.js @@ -2936,9 +2936,7 @@ var LibrarySDL = { }, Mix_VolumeMusic__proxy: 'sync', - Mix_VolumeMusic: (volume) => { - return SDL.setGetVolume(SDL.music, volume); - }, + Mix_VolumeMusic: (volume) => SDL.setGetVolume(SDL.music, volume), Mix_LoadMUS_RW__deps: ['Mix_LoadWAV_RW'], Mix_LoadMUS_RW: (filename) => _Mix_LoadWAV_RW(filename, 0), @@ -3019,9 +3017,7 @@ var LibrarySDL = { Mix_FadeOutMusic: 'Mix_HaltMusic', // XXX ignore fading out effect Mix_PlayingMusic__proxy: 'sync', - Mix_PlayingMusic: () => { - return (SDL.music.audio && !SDL.music.audio.paused) ? 1 : 0; - }, + Mix_PlayingMusic: () => (SDL.music.audio && !SDL.music.audio.paused), // http://www.libsdl.org/projects/SDL_mixer/docs/SDL_mixer_38.html#SEC38 // "Note: Does not check if the channel has been paused." @@ -3346,9 +3342,8 @@ var LibrarySDL = { }, SDL_GL_SwapBuffers__proxy: 'sync', - SDL_GL_SwapBuffers: () => { - Browser.doSwapBuffers?.(); // in workers, this is used to send out a buffered frame - }, + // in workers, this is used to send out a buffered frame + SDL_GL_SwapBuffers: () => Browser.doSwapBuffers?.(), // SDL 2 @@ -3382,9 +3377,7 @@ var LibrarySDL = { }, SDL_GL_SetSwapInterval__deps: ['emscripten_set_main_loop_timing'], - SDL_GL_SetSwapInterval: (state) => { - _emscripten_set_main_loop_timing({{{ cDefs.EM_TIMING_RAF }}}, state); - }, + SDL_GL_SetSwapInterval: (state) => _emscripten_set_main_loop_timing({{{ cDefs.EM_TIMING_RAF }}}, state), SDL_SetWindowTitle__proxy: 'sync', SDL_SetWindowTitle: (window, title) => { diff --git a/src/library_sockfs.js b/src/library_sockfs.js index a63955b64a7a5..182263951ae78 100644 --- a/src/library_sockfs.js +++ b/src/library_sockfs.js @@ -754,27 +754,21 @@ addToLibrary({ SOCKFS.on(event, callback ? _callback : null); }, emscripten_set_socket_error_callback__deps: ['$_setNetworkCallback'], - emscripten_set_socket_error_callback: (userData, callback) => { - _setNetworkCallback('error', userData, callback); - }, + emscripten_set_socket_error_callback: (userData, callback) => + _setNetworkCallback('error', userData, callback), emscripten_set_socket_open_callback__deps: ['$_setNetworkCallback'], - emscripten_set_socket_open_callback: (userData, callback) => { - _setNetworkCallback('open', userData, callback); - }, + emscripten_set_socket_open_callback: (userData, callback) => + _setNetworkCallback('open', userData, callback), emscripten_set_socket_listen_callback__deps: ['$_setNetworkCallback'], - emscripten_set_socket_listen_callback: (userData, callback) => { - _setNetworkCallback('listen', userData, callback); - }, + emscripten_set_socket_listen_callback: (userData, callback) => + _setNetworkCallback('listen', userData, callback), emscripten_set_socket_connection_callback__deps: ['$_setNetworkCallback'], - emscripten_set_socket_connection_callback: (userData, callback) => { - _setNetworkCallback('connection', userData, callback); - }, + emscripten_set_socket_connection_callback: (userData, callback) => + _setNetworkCallback('connection', userData, callback), emscripten_set_socket_message_callback__deps: ['$_setNetworkCallback'], - emscripten_set_socket_message_callback: (userData, callback) => { - _setNetworkCallback('message', userData, callback); - }, + emscripten_set_socket_message_callback: (userData, callback) => + _setNetworkCallback('message', userData, callback), emscripten_set_socket_close_callback__deps: ['$_setNetworkCallback'], - emscripten_set_socket_close_callback: (userData, callback) => { - _setNetworkCallback('close', userData, callback); - } + emscripten_set_socket_close_callback: (userData, callback) => + _setNetworkCallback('close', userData, callback), }); diff --git a/src/library_strings.js b/src/library_strings.js index 4931a316924ee..e5a0c03b0b32c 100644 --- a/src/library_strings.js +++ b/src/library_strings.js @@ -383,9 +383,7 @@ addToLibrary({ // Returns the number of bytes the given Javascript string takes if encoded as // a UTF16 byte array, EXCLUDING the null terminator byte. - $lengthBytesUTF16: (str) => { - return str.length*2; - }, + $lengthBytesUTF16: (str) => str.length*2, $UTF32ToString: (ptr, maxBytesToRead) => { #if ASSERTIONS diff --git a/src/library_syscall.js b/src/library_syscall.js index 14e00b3c265c4..73dd12fe09fbe 100644 --- a/src/library_syscall.js +++ b/src/library_syscall.js @@ -821,9 +821,7 @@ var SyscallsLibrary = { }, __syscall_fadvise64__nothrow: true, __syscall_fadvise64__proxy: 'none', - __syscall_fadvise64: (fd, offset, len, advice) => { - return 0; // your advice is important to us (but we can't use it) - }, + __syscall_fadvise64: (fd, offset, len, advice) => 0, __syscall_openat__deps: ['$syscallGetVarargI'], __syscall_openat: (dirfd, path, flags, varargs) => { path = SYSCALLS.getStr(path); diff --git a/src/library_time.js b/src/library_time.js index 16147eb4d222f..92ae8a43ac6cd 100644 --- a/src/library_time.js +++ b/src/library_time.js @@ -516,7 +516,5 @@ addToLibrary({ return 0; }, strptime_l__deps: ['strptime'], - strptime_l: (buf, format, tm, locale) => { - return _strptime(buf, format, tm); // no locale support yet - }, + strptime_l: (buf, format, tm, locale) => _strptime(buf, format, tm), // no locale support yet }); diff --git a/src/library_webgl.js b/src/library_webgl.js index 51e76cba54225..adc211205fad7 100644 --- a/src/library_webgl.js +++ b/src/library_webgl.js @@ -138,31 +138,27 @@ for (/**@suppress{duplicate}*/var i = 0; i <= {{{ GL_POOL_TEMP_BUFFERS_SIZE }}}; emscripten_webgl_enable_WEBGL_draw_buffers: (ctx) => webgl_enable_WEBGL_draw_buffers(GL.contexts[ctx].GLctx), #endif - $webgl_enable_WEBGL_multi_draw: (ctx) => { + $webgl_enable_WEBGL_multi_draw: (ctx) => // Closure is expected to be allowed to minify the '.multiDrawWebgl' property, so not accessing it quoted. - return !!(ctx.multiDrawWebgl = ctx.getExtension('WEBGL_multi_draw')); - }, + !!(ctx.multiDrawWebgl = ctx.getExtension('WEBGL_multi_draw')), emscripten_webgl_enable_WEBGL_multi_draw__deps: ['$webgl_enable_WEBGL_multi_draw'], emscripten_webgl_enable_WEBGL_multi_draw: (ctx) => webgl_enable_WEBGL_multi_draw(GL.contexts[ctx].GLctx), - $webgl_enable_EXT_polygon_offset_clamp: (ctx) => { - return !!(ctx.extPolygonOffsetClamp = ctx.getExtension('EXT_polygon_offset_clamp')); - }, + $webgl_enable_EXT_polygon_offset_clamp: (ctx) => + !!(ctx.extPolygonOffsetClamp = ctx.getExtension('EXT_polygon_offset_clamp')), emscripten_webgl_enable_EXT_polygon_offset_clamp__deps: ['$webgl_enable_EXT_polygon_offset_clamp'], emscripten_webgl_enable_EXT_polygon_offset_clamp: (ctx) => webgl_enable_EXT_polygon_offset_clamp(GL.contexts[ctx].GLctx), - $webgl_enable_EXT_clip_control: (ctx) => { - return !!(ctx.extClipControl = ctx.getExtension('EXT_clip_control')); - }, + $webgl_enable_EXT_clip_control: (ctx) => + !!(ctx.extClipControl = ctx.getExtension('EXT_clip_control')), emscripten_webgl_enable_EXT_clip_control__deps: ['$webgl_enable_EXT_clip_control'], emscripten_webgl_enable_EXT_clip_control: (ctx) => webgl_enable_EXT_clip_control(GL.contexts[ctx].GLctx), - $webgl_enable_WEBGL_polygon_mode: (ctx) => { - return !!(ctx.webglPolygonMode = ctx.getExtension('WEBGL_polygon_mode')); - }, + $webgl_enable_WEBGL_polygon_mode: (ctx) => + !!(ctx.webglPolygonMode = ctx.getExtension('WEBGL_polygon_mode')), emscripten_webgl_enable_WEBGL_polygon_mode__deps: ['$webgl_enable_WEBGL_polygon_mode'], emscripten_webgl_enable_WEBGL_polygon_mode: (ctx) => webgl_enable_WEBGL_polygon_mode(GL.contexts[ctx].GLctx), @@ -1273,7 +1269,7 @@ for (/**@suppress{duplicate}*/var i = 0; i <= {{{ GL_POOL_TEMP_BUFFERS_SIZE }}}; $webglGetExtensions__internal: true, $webglGetExtensions__deps: ['$getEmscriptenSupportedExtensions'], - $webglGetExtensions() { + $webglGetExtensions: () => { var exts = getEmscriptenSupportedExtensions(GLctx); #if GL_EXTENSIONS_IN_PREFIXED_FORMAT exts = exts.concat(exts.map((e) => "GL_" + e)); @@ -3050,9 +3046,8 @@ for (/**@suppress{duplicate}*/var i = 0; i <= {{{ GL_POOL_TEMP_BUFFERS_SIZE }}}; GLctx.vertexAttrib4f(index, HEAPF32[v>>2], HEAPF32[v+4>>2], HEAPF32[v+8>>2], HEAPF32[v+12>>2]); }, - glGetAttribLocation: (program, name) => { - return GLctx.getAttribLocation(GL.programs[program], UTF8ToString(name)); - }, + glGetAttribLocation: (program, name) => + GLctx.getAttribLocation(GL.programs[program], UTF8ToString(name)), $__glGetActiveAttribOrUniform__deps: ['$stringToUTF8'], $__glGetActiveAttribOrUniform: (funcName, program, index, bufSize, length, size, type, name) => { @@ -3071,14 +3066,12 @@ for (/**@suppress{duplicate}*/var i = 0; i <= {{{ GL_POOL_TEMP_BUFFERS_SIZE }}}; }, glGetActiveAttrib__deps: ['$__glGetActiveAttribOrUniform'], - glGetActiveAttrib: (program, index, bufSize, length, size, type, name) => { - __glGetActiveAttribOrUniform('getActiveAttrib', program, index, bufSize, length, size, type, name); - }, + glGetActiveAttrib: (program, index, bufSize, length, size, type, name) => + __glGetActiveAttribOrUniform('getActiveAttrib', program, index, bufSize, length, size, type, name), glGetActiveUniform__deps: ['$__glGetActiveAttribOrUniform'], - glGetActiveUniform: (program, index, bufSize, length, size, type, name) => { - __glGetActiveAttribOrUniform('getActiveUniform', program, index, bufSize, length, size, type, name); - }, + glGetActiveUniform: (program, index, bufSize, length, size, type, name) => + __glGetActiveAttribOrUniform('getActiveUniform', program, index, bufSize, length, size, type, name), glCreateShader: (shaderType) => { var id = GL.getNewId(GL.shaders); diff --git a/test/other/codesize/test_codesize_cxx_ctors1.gzsize b/test/other/codesize/test_codesize_cxx_ctors1.gzsize index b4742a2b4cad8..70461f8a6e739 100644 --- a/test/other/codesize/test_codesize_cxx_ctors1.gzsize +++ b/test/other/codesize/test_codesize_cxx_ctors1.gzsize @@ -1 +1 @@ -8449 +8450 diff --git a/test/other/codesize/test_codesize_cxx_ctors1.jssize b/test/other/codesize/test_codesize_cxx_ctors1.jssize index 82cd6565207a4..cfe33a90d39b5 100644 --- a/test/other/codesize/test_codesize_cxx_ctors1.jssize +++ b/test/other/codesize/test_codesize_cxx_ctors1.jssize @@ -1 +1 @@ -20799 +20797 diff --git a/test/other/codesize/test_codesize_cxx_ctors2.gzsize b/test/other/codesize/test_codesize_cxx_ctors2.gzsize index 90dd8eaf67fd6..3a402b492b0d7 100644 --- a/test/other/codesize/test_codesize_cxx_ctors2.gzsize +++ b/test/other/codesize/test_codesize_cxx_ctors2.gzsize @@ -1 +1 @@ -8434 +8436 diff --git a/test/other/codesize/test_codesize_cxx_ctors2.jssize b/test/other/codesize/test_codesize_cxx_ctors2.jssize index 5c6b69f267b0b..f9b02e898e2f7 100644 --- a/test/other/codesize/test_codesize_cxx_ctors2.jssize +++ b/test/other/codesize/test_codesize_cxx_ctors2.jssize @@ -1 +1 @@ -20767 +20765 diff --git a/test/other/codesize/test_codesize_cxx_except.jssize b/test/other/codesize/test_codesize_cxx_except.jssize index 4cbf48a3d3cf7..790b94dcc58e4 100644 --- a/test/other/codesize/test_codesize_cxx_except.jssize +++ b/test/other/codesize/test_codesize_cxx_except.jssize @@ -1 +1 @@ -24642 +24640 diff --git a/test/other/codesize/test_codesize_cxx_except_wasm.gzsize b/test/other/codesize/test_codesize_cxx_except_wasm.gzsize index b29f7395cb69c..6536dd0d80ddf 100644 --- a/test/other/codesize/test_codesize_cxx_except_wasm.gzsize +++ b/test/other/codesize/test_codesize_cxx_except_wasm.gzsize @@ -1 +1 @@ -8417 +8419 diff --git a/test/other/codesize/test_codesize_cxx_except_wasm.jssize b/test/other/codesize/test_codesize_cxx_except_wasm.jssize index 86f9431431bd7..bd029fefbea94 100644 --- a/test/other/codesize/test_codesize_cxx_except_wasm.jssize +++ b/test/other/codesize/test_codesize_cxx_except_wasm.jssize @@ -1 +1 @@ -20693 +20691 diff --git a/test/other/codesize/test_codesize_cxx_except_wasm_exnref.gzsize b/test/other/codesize/test_codesize_cxx_except_wasm_exnref.gzsize index b29f7395cb69c..6536dd0d80ddf 100644 --- a/test/other/codesize/test_codesize_cxx_except_wasm_exnref.gzsize +++ b/test/other/codesize/test_codesize_cxx_except_wasm_exnref.gzsize @@ -1 +1 @@ -8417 +8419 diff --git a/test/other/codesize/test_codesize_cxx_except_wasm_exnref.jssize b/test/other/codesize/test_codesize_cxx_except_wasm_exnref.jssize index 86f9431431bd7..bd029fefbea94 100644 --- a/test/other/codesize/test_codesize_cxx_except_wasm_exnref.jssize +++ b/test/other/codesize/test_codesize_cxx_except_wasm_exnref.jssize @@ -1 +1 @@ -20693 +20691 diff --git a/test/other/codesize/test_codesize_cxx_lto.gzsize b/test/other/codesize/test_codesize_cxx_lto.gzsize index 7947190fcc750..c24db41a3eb53 100644 --- a/test/other/codesize/test_codesize_cxx_lto.gzsize +++ b/test/other/codesize/test_codesize_cxx_lto.gzsize @@ -1 +1 @@ -8348 +8349 diff --git a/test/other/codesize/test_codesize_cxx_lto.jssize b/test/other/codesize/test_codesize_cxx_lto.jssize index 3879b595cd83e..6e2cb31607353 100644 --- a/test/other/codesize/test_codesize_cxx_lto.jssize +++ b/test/other/codesize/test_codesize_cxx_lto.jssize @@ -1 +1 @@ -20378 +20376 diff --git a/test/other/codesize/test_codesize_cxx_mangle.gzsize b/test/other/codesize/test_codesize_cxx_mangle.gzsize index ff21bd4024bea..a434caefa3d33 100644 --- a/test/other/codesize/test_codesize_cxx_mangle.gzsize +++ b/test/other/codesize/test_codesize_cxx_mangle.gzsize @@ -1 +1 @@ -9481 +9480 diff --git a/test/other/codesize/test_codesize_cxx_mangle.jssize b/test/other/codesize/test_codesize_cxx_mangle.jssize index 4cbf48a3d3cf7..790b94dcc58e4 100644 --- a/test/other/codesize/test_codesize_cxx_mangle.jssize +++ b/test/other/codesize/test_codesize_cxx_mangle.jssize @@ -1 +1 @@ -24642 +24640 diff --git a/test/other/codesize/test_codesize_cxx_noexcept.gzsize b/test/other/codesize/test_codesize_cxx_noexcept.gzsize index b4742a2b4cad8..70461f8a6e739 100644 --- a/test/other/codesize/test_codesize_cxx_noexcept.gzsize +++ b/test/other/codesize/test_codesize_cxx_noexcept.gzsize @@ -1 +1 @@ -8449 +8450 diff --git a/test/other/codesize/test_codesize_cxx_noexcept.jssize b/test/other/codesize/test_codesize_cxx_noexcept.jssize index 82cd6565207a4..cfe33a90d39b5 100644 --- a/test/other/codesize/test_codesize_cxx_noexcept.jssize +++ b/test/other/codesize/test_codesize_cxx_noexcept.jssize @@ -1 +1 @@ -20799 +20797 diff --git a/test/other/codesize/test_codesize_cxx_wasmfs.gzsize b/test/other/codesize/test_codesize_cxx_wasmfs.gzsize index 97915b6eba6fa..4a45c385de208 100644 --- a/test/other/codesize/test_codesize_cxx_wasmfs.gzsize +++ b/test/other/codesize/test_codesize_cxx_wasmfs.gzsize @@ -1 +1 @@ -3892 +3895 diff --git a/test/other/codesize/test_codesize_cxx_wasmfs.jssize b/test/other/codesize/test_codesize_cxx_wasmfs.jssize index 9b275a0979023..4a63574e4a00e 100644 --- a/test/other/codesize/test_codesize_cxx_wasmfs.jssize +++ b/test/other/codesize/test_codesize_cxx_wasmfs.jssize @@ -1 +1 @@ -8693 +8691 diff --git a/test/other/codesize/test_codesize_files_wasmfs.gzsize b/test/other/codesize/test_codesize_files_wasmfs.gzsize index 379d97908d1ad..02089ff0b983b 100644 --- a/test/other/codesize/test_codesize_files_wasmfs.gzsize +++ b/test/other/codesize/test_codesize_files_wasmfs.gzsize @@ -1 +1 @@ -2986 +2989 diff --git a/test/other/codesize/test_codesize_files_wasmfs.jssize b/test/other/codesize/test_codesize_files_wasmfs.jssize index 41fb47a7ed833..d928f1e433d22 100644 --- a/test/other/codesize/test_codesize_files_wasmfs.jssize +++ b/test/other/codesize/test_codesize_files_wasmfs.jssize @@ -1 +1 @@ -6329 +6327