Age | Commit message (Expand) | Author |
2013-06-17 | enable all debug logging in emcc -v | Alon Zakai |
2013-06-17 | fix weak alias for warn | Anthony Pesch |
2013-06-16 | Merge pull request #1282 from juj/sdl_addtimer | Alon Zakai |
2013-06-16 | Merge pull request #1284 from juj/SDL_WM_SetIcon | Alon Zakai |
2013-06-16 | add some dirent defines, fixes #1277 | Alon Zakai |
2013-06-13 | do not eliminate dead code in EXPORT_ALL | Alon Zakai |
2013-06-13 | Report debug diagnostics in file packager if EMCC_DEBUG=1. Make file packager... | Jukka Jylänki |
2013-06-13 | Added test for SDL_Mix that includes looping audio. | Michael Bishop |
2013-06-13 | Add no-op SDL_WM_SetIcon. | Jukka Jylänki |
2013-06-13 | Don't throw when SDL_CreateRGBSurfaceFrom is called, but at least give an uni... | Jukka Jylänki |
2013-06-13 | Fix SDL_AddTimer dyncall signature. The timer callback is of form 'typedef Ui... | Jukka Jylänki |
2013-06-13 | Improve emcc input file detection to ignore all arguments that precede a GCC ... | Jukka Jylänki |
2013-06-13 | Improve absolute path warning detection to work on Windows, and make the warn... | Jukka Jylänki |
2013-06-10 | coerce output of integer modulus, since x%0 is NaN, which is not an integer | Alon Zakai |
2013-06-10 | rename int because closure hates it | Alon Zakai |
2013-06-10 | comment on not inlining for setjmp | Alon Zakai |
2013-06-10 | fix test_relooper | Alon Zakai |
2013-06-10 | add event listening to headless | Alon Zakai |
2013-06-10 | warn if setjmp is used as a function pointer | Alon Zakai |
2013-06-09 | fix sockaddr sa_data; fixes #1272 | Alon Zakai |
2013-06-08 | raise an error if no functions were left to process | Alon Zakai |
2013-06-08 | comment on EXPORT_ALL | Alon Zakai |
2013-06-08 | - Fix for mod property of SDL key events | Anthony Pesch |
2013-06-08 | Don't use the host machine's shared object extension | Anthony Pesch |
2013-06-08 | handle more cases in simplifyNotComps | Alon Zakai |
2013-06-08 | only remove seq|0 when seq is an assign value | Alon Zakai |
2013-06-08 | remove unneeded outside |0 when a sequence ends in a safe bitop | Alon Zakai |
2013-06-08 | optimize away bitcasts to variables that will only be used in an assign to th... | Alon Zakai |
2013-06-07 | improve tempDoublePtr elimination and only run analysis when necessary | Alon Zakai |
2013-06-07 | eliminate bitcasts of immediately loaded values | Alon Zakai |
2013-06-07 | optimize some HEAP32 expressions, including some unnecessary bitcasts through... | Alon Zakai |
2013-06-07 | refactor to potentially enable shadow flip on 32-bit values | Alon Zakai |
2013-06-07 | ignore tempDoublePtr operations, they do not really alias memory | Alon Zakai |
2013-06-07 | fix crunch path | Alon Zakai |
2013-06-07 | lua comment | Alon Zakai |
2013-06-07 | fix multiplications in setjmp code | Alon Zakai |
2013-06-07 | remove break labels more aggresively, with a refined natural flow analysis1.4.9 | Alon Zakai |
2013-06-07 | optimize out double not | Alon Zakai |
2013-06-07 | remove unneeded check | Alon Zakai |
2013-06-07 | properly simplify not comps in loop suffixes and elsewhere | Alon Zakai |
2013-06-07 | allow building only in test runner | Alon Zakai |
2013-06-07 | optimize multiple loop variables together | Alon Zakai |
2013-06-07 | handle empty loops in new loop optimizations; fixes #1270 | Alon Zakai |
2013-06-07 | add missing return values in safeRequestAnimationFrame,safeSetTimeout,safeSet... | Alon Zakai |
2013-06-07 | Make lrint more correct. Closes #1265. | Jez Ng |
2013-06-07 | track number of uses properly for loop variable removal | Alon Zakai |
2013-06-07 | better erroring in SDL_Delay; issue #1255 | Alon Zakai |
2013-06-07 | eliminate loop helper variables | Alon Zakai |
2013-06-06 | move asm loop optimization into last phase | Alon Zakai |
2013-06-05 | simplify infinite while loops with a break at the end into a do-while with a ... | Alon Zakai |