aboutsummaryrefslogtreecommitdiff
path: root/src/all_types.hpp
AgeCommit message (Expand)Author
2016-02-12add @compile_var("environ")Andrew Kelley
2016-02-11add @compile_var("os") and @compile_var("arch")Andrew Kelley
2016-02-11ability to cross compileAndrew Kelley
2016-02-10add "targets" command to list architectures, oses, abisAndrew Kelley
2016-02-09if statements can be const expr evaluatedAndrew Kelley
2016-02-08support overriding the dynamic linker argument to ldAndrew Kelley
2016-02-08support static linking against libcAndrew Kelley
2016-02-07improve performance for get_fn_typeAndrew Kelley
2016-02-07implement @const_evalAndrew Kelley
2016-02-06implement %defer and ?deferAndrew Kelley
2016-02-06codegen: return respects unconditional deferAndrew Kelley
2016-02-06simple unconditional defer supportAndrew Kelley
2016-02-05parsing code for defer and moreAndrew Kelley
2016-02-04support variable in switch expression prongsAndrew Kelley
2016-02-04no namespace required when switching on enumAndrew Kelley
2016-02-04ability to explicitly cast bool to intAndrew Kelley
2016-02-04for loop supports break and continueAndrew Kelley
2016-02-04implement constant values for enums with payloadAndrew Kelley
2016-02-04allow defining errors with the same nameAndrew Kelley
2016-02-03add ability to call function pointer fieldAndrew Kelley
2016-02-03basic support for building a test targetAndrew Kelley
2016-02-03fix debug symbols for byval argumentsAndrew Kelley
2016-02-03types sized and aligned with LLVM target data layout APIAndrew Kelley
2016-02-02add @compile_var builtin and "is_big_endian" compile varAndrew Kelley
2016-02-02build: fix libc path findingAndrew Kelley
2016-02-02unreachable causes a trap in debug modeAndrew Kelley
2016-02-02add abort function and "cold" fn attributeAndrew Kelley
2016-02-01codegen: avoid table lookup in assembly expressionAndrew Kelley
2016-02-01inline is a keyword instead of a directiveAndrew Kelley
2016-02-01optimization: avoid codegening unused functionsAndrew Kelley
2016-02-01add ?? prefix operatorAndrew Kelley
2016-01-31support casting between floatsAndrew Kelley
2016-01-31support casting between int and float typesAndrew Kelley
2016-01-31add --library-path cli optionAndrew Kelley
2016-01-31parseh handles typedef void betterAndrew Kelley
2016-01-31parseh understands types better and handles some situations betterAndrew Kelley
2016-01-28ability to specify function typeAndrew Kelley
2016-01-27c_import of stdio.h works for some functionsAndrew Kelley
2016-01-27move AST rendering code to separate fileAndrew Kelley
2016-01-27build command supports -isystem argumentAndrew Kelley
2016-01-27parseh correctly handles C's void typeAndrew Kelley
2016-01-27fix codegen for pointers to voidAndrew Kelley
2016-01-27add explicit cast from isize/usize to pointerAndrew Kelley
2016-01-27upgrade to the libclang C++ APIAndrew Kelley
2016-01-26add c_import top level declAndrew Kelley
2016-01-26different extern syntax and simplify parsing top level declsAndrew Kelley
2016-01-25add the C integer typesAndrew Kelley
2016-01-25implement compile time string concatenationAndrew Kelley
2016-01-25codegen: get rid of cur_block_contextAndrew Kelley
2016-01-25implement %% prefix operatorAndrew Kelley