aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.cpp
AgeCommit message (Expand)Author
2019-02-28struct types get fully qualified namesAndrew Kelley
2019-02-28remove namespace type; files are empty structsAndrew Kelley
2019-02-28Merge remote-tracking branch 'origin/master' into llvm8Andrew Kelley
2019-02-27fix incorrect use of printf in previous commitAndrew Kelley
2019-02-27print the command that failed when C source code fails to buildAndrew Kelley
2019-02-26fix handling when there are multiple externs andAndrew Kelley
2019-02-26introduce sys_include_dir for when sys/* files are not with stdlib.hAndrew Kelley
2019-02-26fix regressions on WindowsAndrew Kelley
2019-02-26breaking changes to the way targets work in zigAndrew Kelley
2019-02-26use -nostdinc and sometimes -nolibc when compiling C codeAndrew Kelley
2019-02-26use -nostdinc++ when compiling C codeAndrew Kelley
2019-02-26use -nobuiltininc when compiling c codeAndrew Kelley
2019-02-25fix not finding libgcc_s when looking for native libcAndrew Kelley
2019-02-25`@cImport` works with `--cache on`Andrew Kelley
2019-02-25building DLLs on Windows works betterAndrew Kelley
2019-02-25first class support for compiling C codeAndrew Kelley
2019-02-23better libc detection (#1996)Andrew Kelley
2019-02-22implement vector negationAndrew Kelley
2019-02-22fix `@bitCast` when src/dest types have mismatched handle_is_ptrAndrew Kelley
2019-02-21better handling of arrays in packed structsAndrew Kelley
2019-02-21`@sliceToBytes` works at comptimeAndrew Kelley
2019-02-20packed structs support comptime bitcastingAndrew Kelley
2019-02-19valgrind client requests for undefined valuesAndrew Kelley
2019-02-19remove --no-rosegment workaround now that valgrind bug is fixedAndrew Kelley
2019-02-18export _mh_execute_header with weak linkageAndrew Kelley
2019-02-18Add align attribute for params pointersLemonBoy
2019-02-17Add NetBSD supportMaya Rashish
2019-02-15typecheck the panic functionAndrew Kelley
2019-02-15Merge pull request #1965 from ziglang/c-pointer-typeAndrew Kelley
2019-02-14omit nonnull attribute for C pointersAndrew Kelley
2019-02-14runtime safety check for casting null to pointerAndrew Kelley
2019-02-11add C pointer type to @typeInfoAndrew Kelley
2019-02-11C pointer comparison and arithmeticAndrew Kelley
2019-02-10avoid needlessly creating global constantsAndrew Kelley
2019-02-10avoid needlessly creating global constantsAndrew Kelley
2019-02-09Merge remote-tracking branch 'origin/master' into llvm8Andrew Kelley
2019-02-09implement vector math safety with ext and truncAndrew Kelley
2019-02-09implement vector addition with safety checkingAndrew Kelley
2019-02-07fix using the result of @intCast to u0Andrew Kelley
2019-02-07Merge remote-tracking branch 'origin/master' into llvm8Andrew Kelley
2019-02-07better error message when LLVM does not understand a tripleAndrew Kelley
2019-02-06Merge pull request #1924 from ziglang/tlsAndrew Kelley
2019-02-06implement Thread Local Storage on WindowsAndrew Kelley
2019-02-06require running std lib tests coherentlyAndrew Kelley
2019-02-06thread local storage working for linux x86_64Andrew Kelley
2019-02-05Added support for vector wrapping mult and subJimmi Holst Christensen
2019-02-04Merge remote-tracking branch 'origin/master' into llvm8Andrew Kelley
2019-02-04SIMD: array to vector, vector to array, wrapping int addAndrew Kelley
2019-02-01introduce --single-threaded build optionAndrew Kelley
2019-01-30introduce vector type for SIMDAndrew Kelley