aboutsummaryrefslogtreecommitdiff
path: root/src/error.cpp
AgeCommit message (Collapse)Author
2018-11-06limit integer types to maximum bit width of 65535Andrew Kelley
closes #1541
2018-09-12windows os.cpp implementationsAndrew Kelley
2018-09-10caching is workingAndrew Kelley
* add almost all the input parameter state to the hash - missing items are the detected MSVC installation on Windows and detected libc installation on POSIX - also missing are C files and .h files that libclang finds * artifacts are created in global cache directory instead of zig-cache. - exception: builtin.zig is still in zig-cache * zig run uses the new cache correctly * zig run uses execv on posix systems
2018-09-09basic compiler id hash workingAndrew Kelley
2017-11-29fix build broken by previous commitAndrew Kelley
now we report a compile error for unusual failures from translate-c
2017-08-09more intuitive left shift and right shift operatorsAndrew 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-06builtin functions for division and remainder divisionAndrew 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-28zig puts temporary object files in zig-cache folderAndrew Kelley
See #298
2016-12-04add missing copyright noticesAndrew Kelley
2016-04-12add error for dividing by zero in static function evaluationAndrew Kelley
2015-12-01add test for bad importAndrew Kelley
2015-11-30refactor code to prepare for multiple filesAndrew Kelley
verbose compiler output is now behind --verbose flag
2015-11-30add directive to specify root export versionAndrew Kelley
2015-11-05experiment with being a linkerAndrew Kelley