aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-09-13Basic support for typed exceptions.max99x
2011-09-13Allowed library to define global variables that override undefined externals.max99x
2011-09-13Added stub for mblen().max99x
2011-09-13Added stubs for get/setrlimit().max99x
2011-09-13Added some stubs for signal.h functions.max99x
2011-09-13Added stub implementations of clock_(get|set)time() and clock_getres().max99x
2011-09-13Added stpcpy to library.max99x
2011-09-13Added a few extra library aliases.max99x
2011-09-13Added guard for getelementptr param type parsing (needed for Ruby).max99x
2011-09-13Allowed library functions to request JS-style varargs.max99x
2011-09-13Corrected handling of hidden external functions in LLVM disassembly.max99x
2011-09-07Canceling a window.prompt() for the default stdin handler no longer results ↵max99x
in an EOF.
2011-09-07Made sure XHRs request typed arrays only if they can handle them.max99x
2011-08-30Updated eliminator test output.max99x
2011-08-30Made sure uglify's code generator re-parenthesizes anonymous functions.max99x
2011-08-30Added setjmp/longjmp aliases.max99x
2011-08-30Updated $ENV initialization to be Closure-friendly.max99x
2011-08-30Added another scanf alias; fixed vsscanf's alias.max99x
2011-08-29Added v*scanf aliases.max99x
2011-08-28Added a missing alias.max99x
2011-08-28Fix for field size in _scanString().max99x
2011-08-28Minor Closure Compiler compatibility fixes.max99x
2011-08-28Removed old redundant stro[u]l() definitions.max99x
2011-08-28Eliminator: prevent inlining into loops & fix for circular dependencies.max99x
2011-08-28Fixed negatives in strtod(); implemented strto[l/ul/ll/ull]().max99x
2011-08-27Updated the eliminator, mainly to support use-before-declaration cases.max99x
2011-08-27Simplified strdup(); added test for it in test_strings.max99x
2011-08-27Updated the expected output of test_unistd_isatty.max99x
2011-08-27Returning safe value from setlocale().max99x
2011-08-27Fixed strdup() address/value switch.max99x
2011-08-27Implemented realpath().max99x
2011-08-27Made isatty() always fail. We don't support proper terminal control anyway.max99x
2011-08-27Fixed missing path in streams of files created using open().max99x
2011-08-27Fixed stdin failure in strict mode.max99x
2011-08-27Disabled tests that are now incompatible with _t2;max99x
Disabled test_dlfcn_varargs on _q1; expected failure.
2011-08-26optimize generateStructTypes and flattenAlon Zakai
2011-08-25Merge pull request #71 from max99x/masterAlon Zakai
Varargs for externals, shared lib globals and other fixes
2011-08-26Switched from "var x = function x() {}" to plain "function x() {}" for lib ↵max99x
functions.
2011-08-25Reverted getc()/putc() buffers to static, but via a postset;max99x
Style fixes in response to code review.
2011-08-25Style fixes in response to code review. No change in functionality.max99x
2011-08-25Prevented library stubs from overwriting LL declarations in the JSifier.max99x
2011-08-25Switched getc/putc buffers to be allocated on the stack.max99x
2011-08-25Moved errno buffer out of $FS.max99x
2011-08-25Fixed _formatString()/printf() for USE_TYPED_ARRAYS + test for it.max99x
2011-08-25Added vprintf() test;max99x
Skipping tests that use i64 vars when USE_TYPED_ARRAYS != 0; Fixed incorrectly declared printf() in tests/cases/trunc.ll.
2011-08-25Updated uses of varargs in the library to C style.max99x
2011-08-25Made sure SAFE_HEAP allows storing of NaNs (e.g. from math functions).max99x
2011-08-25Added an "ignore" parameter to makeGetValue().max99x
2011-08-25Fixed test_dlfcn_varargs (still failing, but correct expectations).max99x
2011-08-25JSifier and Intertyper changes to support external varargs functions.max99x