aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.cpp
AgeCommit message (Expand)Author
2016-01-23codegen: fix field access of arraysAndrew Kelley
2016-01-23implement literal error valuesAndrew Kelley
2016-01-23fix no error emitted for redeclaring global varAndrew Kelley
2016-01-22character literal returns a number literalAndrew Kelley
2016-01-22implement undefined literalAndrew Kelley
2016-01-22add undefined literalAndrew Kelley
2016-01-22support statically initialized array literalAndrew Kelley
2016-01-22un-special case constant global stringsAndrew Kelley
2016-01-22support statically initialized structsAndrew Kelley
2016-01-22implicit casts rewrite the ASTAndrew Kelley
2016-01-21allow constants to have number literal valuesAndrew Kelley
2016-01-21number literal reworkAndrew Kelley
2016-01-20parsing error value decls and error value literalsAndrew Kelley
2016-01-20Merge branch 'master' of github.com:andrewrk/zigAndrew Kelley
2016-01-20basic support for switch expressionAndrew Kelley
2016-01-20rename value_count to member_countMovingtoMars
2016-01-19add switch statement support to parserAndrew Kelley
2016-01-18use signed integer for sizes of thingsAndrew Kelley
2016-01-18add function pointer supportAndrew Kelley
2016-01-18pave the road for function pointersAndrew Kelley
2016-01-18refactor std to use for loopAndrew Kelley
2016-01-18add for loop which can iterate over arraysAndrew Kelley
2016-01-18fix nested arraysAndrew Kelley
2016-01-16better main symbol prototypeAndrew Kelley
2016-01-15support array literalsAndrew Kelley
2016-01-15add void arrays testAndrew Kelley
2016-01-15merge constant expression evaluator with analyzerAndrew Kelley
2016-01-14overflow intrinsics take type as first argumentAndrew Kelley
2016-01-14fix next_node_index on wrong structAndrew Kelley
2016-01-14instead of 'as' to cast, call type as functionAndrew Kelley
2016-01-13fix noalias codegenAndrew Kelley
2016-01-13Merge branch 'master' of github.com:andrewrk/zigAndrew Kelley
2016-01-13all types are now expressionsAndrew Kelley
2016-01-12fix build with gccAndrew Kelley
2016-01-11fix not adding builtin functions codeAndrew Kelley
2016-01-11support enums with values attachedAndrew Kelley
2016-01-11simple enum supportAndrew Kelley
2016-01-10fix codegen for void struct fieldsAndrew Kelley
2016-01-10delete unused enumfield and enumdecl node typesAndrew Kelley
2016-01-10refactor out the horrible beast that was codegen_nodeAndrew Kelley
2016-01-10parsing enum declarationsAndrew Kelley
2016-01-09order-independent declarationsAndrew Kelley
2016-01-09add memcpy and memset intrinsicsAndrew Kelley
2016-01-08rename `restrict` to `noalias`Andrew Kelley
2016-01-08suport checked arithmetic operations via intrinsicsAndrew Kelley
2016-01-08add restrict qualifier on pointer argumentsAndrew Kelley
2016-01-08implement unknown size array indexing and slicingAndrew Kelley
2016-01-08codegen: fix else if expression and maybe unwrap exprAndrew Kelley
2016-01-08fix codegen for implicit maybe wrapAndrew Kelley
2016-01-07implement array slicing syntaxAndrew Kelley