aboutsummaryrefslogtreecommitdiff
path: root/src/ir.cpp
AgeCommit message (Expand)Author
2017-02-09lots of miscellaneous things all in one big commitAndrew Kelley
2017-02-07std.io supports printing integers as hex valuesAndrew Kelley
2017-02-06improved behavior on debug safety crashAndrew Kelley
2017-02-05fix volatile not respected for storing through a struct pointerAndrew Kelley
2017-02-05fix assigning to const ptr through struct or indexAndrew Kelley
2017-02-05delete unneeded IR code and fix assigning to const ptrAndrew Kelley
2017-02-05fix volatile not respected for loadsAndrew Kelley
2017-02-05setGlobalSection and setGlobalAlign work for functionsAndrew Kelley
2017-02-04memcpy and memset builtins support volatile pointersAndrew Kelley
2017-02-04remove volatileStore builtin; add volatile pointersAndrew Kelley
2017-02-04add compile error when setting non power of 2 alignmentAndrew Kelley
2017-02-04ability to set global variable alignment and ...Andrew Kelley
2017-02-03add volatileStore() builtin functionAndrew Kelley
2017-02-03add setGlobalAlign and setGlobalSection builtin functionsAndrew Kelley
2017-02-03typedefs work for binary math operationsAndrew Kelley
2017-02-03implement packed structsAndrew Kelley
2017-02-02add try expressionAndrew Kelley
2017-02-02fix ability to call method on variable at compile timeAndrew Kelley
2017-02-02fix behavior when initializing struct with undefinedAndrew Kelley
2017-02-02remove ability to mark if and switch as inlineAndrew Kelley
2017-01-31fix var args allocating wrong amount of memory in compilerAndrew Kelley
2017-01-31fix crash when passing void to var args functionAndrew Kelley
2017-01-31add integer literal to pointer explicit castAndrew Kelley
2017-01-31fix crash when assigning too large value to integerAndrew Kelley
2017-01-29fix compile time initialization of array with undefinedAndrew Kelley
2017-01-29fix sometimes using wrong outer scope for generating defersAndrew Kelley
2017-01-29fix behavior for comptime and runtime basic block phiAndrew Kelley
2017-01-26fix runtime branching tricking the comptime evaluationAndrew Kelley
2017-01-24printf var args proof of conceptAndrew Kelley
2017-01-23various fixesAndrew Kelley
2017-01-23basic support for functions with variable length argumentsAndrew Kelley
2017-01-22remove staticEval builtin in favor of comptime expressionAndrew Kelley
2017-01-22introduce comptime expressionAndrew Kelley
2017-01-16get rid of zeroes literalAndrew Kelley
2017-01-16ability to equality compare with nullAndrew Kelley
2017-01-16equality comparison of void types is known at compile timeAndrew Kelley
2017-01-16implement error when assigning to field of const structAndrew Kelley
2017-01-16fix handling of const values for 2d arraysAndrew Kelley
2017-01-16fix array of enums. also render debug info for const varsAndrew Kelley
2017-01-15fix handling of invalid enumerationAndrew Kelley
2017-01-15fix enum codegen and implement comptime switch var on enumsAndrew Kelley
2017-01-12fix crash when casting fn call argAndrew Kelley
2017-01-12IR: fix array concatenationAndrew Kelley
2017-01-12IR: implement macro for function aliasing function pointerAndrew Kelley
2017-01-11pass more testsAndrew Kelley
2017-01-11better error message for unable to eval const exprAndrew Kelley
2017-01-11fix a few testsAndrew Kelley
2017-01-10IR: implement error for missing or extra switch prongsAndrew Kelley
2017-01-10partially fix parseh commandAndrew Kelley
2017-01-08pass division by zero testAndrew Kelley