| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-11-29 | fix build broken by previous commit | Andrew Kelley | |
| now we report a compile error for unusual failures from translate-c | |||
| 2017-08-09 | more intuitive left shift and right shift operators | Andrew Kelley | |
| Before: * << is left shift, not allowed to shift 1 bits out * <<% is left shift, allowed to shift 1 bits out * >> is right shift, allowed to shift 1 bits out After: * << is left shift, allowed to shift 1 bits out * >> is right shift, allowed to shift 1 bits out * @shlExact is left shift, not allowed to shift 1 bits out * @shrExact is right shift, not allowed to shift 1 bits out Closes #413 | |||
| 2017-05-06 | builtin functions for division and remainder division | Andrew Kelley | |
| * add `@divTrunc` and `@divFloor` functions * add `@rem` and `@mod` functions * add compile error for `/` and `%` with signed integers * add `.bit_count` for float primitive types closes #217 | |||
| 2017-04-28 | zig puts temporary object files in zig-cache folder | Andrew Kelley | |
| See #298 | |||
| 2016-12-04 | add missing copyright notices | Andrew Kelley | |
| 2016-04-12 | add error for dividing by zero in static function evaluation | Andrew Kelley | |
| 2015-12-01 | add test for bad import | Andrew Kelley | |
| 2015-11-30 | refactor code to prepare for multiple files | Andrew Kelley | |
| verbose compiler output is now behind --verbose flag | |||
| 2015-11-30 | add directive to specify root export version | Andrew Kelley | |
| 2015-11-05 | experiment with being a linker | Andrew Kelley | |
