Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 'std::string &' => 'std::string& ' (#1403) | Alon Zakai | 2018-02-05 | 1 | -4/+4 |
| | | | The & on the type is the proper convention. | ||||
* | wasm-reduce tool (#1139) | Alon Zakai | 2017-09-01 | 1 | -0/+12 |
| | | | Reduce an interesting wasm to a smaller still interesting wasm. This takes an arbitrary command to run, and reduces the wasm as much as it can while keeping the behavior of that command fixed. This can be used to reduce compiler bugs in an arbitrary VM, etc. | ||||
* | Fix wasm::read_file() to read correctly sized input strings in text mode. ↵ | juj | 2017-07-18 | 1 | -0/+6 |
| | | | | (#1088) | ||||
* | Wrap description (#839) | Loo Rong Jie | 2016-11-28 | 1 | -0/+1 |
| | |||||
* | add support for symbol assignments, closes #4422 (#615) | Dominic Chen | 2016-07-11 | 1 | -1/+1 |
| | | | Adds support for aliases to objects, to go along with the existing support for aliases to functions. | ||||
* | Build fixes/workarounds to support Visual Studio 2013 build, which has ↵ | juj | 2016-06-21 | 1 | -0/+1 |
| | | | | trouble with some new C++11 constructs. (#581) | ||||
* | Changed type of flags to fix Visual Studio 2015 error (#418) | BSalita | 2016-04-30 | 1 | -1/+1 |
| | | | Changed type of flags (line 26) in read_file() from auto to std::ios_base::openmode to fix Visual Studio 2015 error. | ||||
* | fix file size for binary files read | Alon Zakai | 2016-04-21 | 1 | -1/+1 |
| | |||||
* | refactor file flags into enums | Alon Zakai | 2016-03-31 | 1 | -8/+8 |
| | |||||
* | set the binary bit on files we need to open in binary mode | Alon Zakai | 2016-03-31 | 1 | -7/+12 |
| | |||||
* | Repair broken file-size check | pjuftring | 2016-03-31 | 1 | -1/+1 |
| | |||||
* | streampos may be signed on some platforms | Alon Zakai | 2016-03-28 | 1 | -2/+2 |
| | |||||
* | Use std::numeric_limits<uint32_t>::max() instead of 0xFFFFFFFF. | Jukka Jylänki | 2016-03-28 | 1 | -2/+3 |
| | |||||
* | Fix wasm::read_file() to abort if input file is too big to read in when ↵ | Jukka Jylänki | 2016-03-28 | 1 | -2/+7 |
| | | | | building a 32-bit executable and size_t is not 64-bit. | ||||
* | asm2wasm: use support's command-line | JF Bastien | 2016-01-11 | 1 | -2/+7 |
| | |||||
* | Move file input / output to support. | JF Bastien | 2016-01-04 | 1 | -0/+51 |