aboutsummaryrefslogtreecommitdiff
path: root/src/analyze.cpp
AgeCommit message (Expand)Author
2016-04-13fix evaluating generic functions in wrong contextAndrew Kelley
2016-04-12more eval tests and fix eval call analyze codeAndrew Kelley
2016-04-12add error for dividing by zero in static function evaluationAndrew Kelley
2016-04-12passing all testsAndrew Kelley
2016-04-12eval: ability to eval more thingsAndrew Kelley
2016-04-12compile-time function evaluation of pure functionsAndrew Kelley
2016-04-12add error for unable to infer expression type in if statementsAndrew Kelley
2016-04-11unsigned ints implicitly cast to signed ints when they fitAndrew Kelley
2016-04-10add error for accessing empty arrayAndrew Kelley
2016-04-10fix crash when casting undefined to sliceAndrew Kelley
2016-04-09add error for assigning null to non-nullable pointerAndrew Kelley
2016-04-09add @breakpoint()Andrew Kelley
2016-04-09re-introduce gotoAndrew Kelley
2016-04-09fix debug symbols regression after llvm 3.8.0Andrew Kelley
2016-04-09implement @err_name builtin functionAndrew Kelley
2016-04-08fix gcc compile errorJosh Wolfe
2016-04-08update cat example, refactor stdAndrew Kelley
2016-04-07fix gcc compile errorsJosh Wolfe
2016-04-07fix evaluating generic function instance in wrong contextAndrew Kelley
2016-04-07generic functions use correct type for generic argsAndrew Kelley
2016-04-07support multiple generic function instancesAndrew Kelley
2016-04-06add error for gt and lt comparison of invalid typesAndrew Kelley
2016-04-06ability to compare function pointers at compile timeAndrew Kelley
2016-04-06fix generics not using ast cloneAndrew Kelley
2016-04-06support simple generic functionsAndrew Kelley
2016-03-08update to llvm 3.8.0Andrew Kelley
2016-03-01fix detection of @import and @c_import inside fn bodyAndrew Kelley
2016-03-01c_void is provided outside of C importsAndrew Kelley
2016-03-01fix comparison of unsigned integers errorAndrew Kelley
2016-03-01rewrite how importing worksAndrew Kelley
2016-02-16back to normal print specifiersAndrew Kelley
2016-02-16use PRIuMAX instead of PRIu64 for mingwAndrew Kelley
2016-02-16prepend underscore to non exported functionsAndrew Kelley
2016-02-16update bootstrap to work for macos tooAndrew Kelley
2016-02-15handle libc include path and libc lib path differentlyAndrew Kelley
2016-02-14parseh: fix __cdecl causing a fn ptr to be double ptrAndrew Kelley
2016-02-13if any c imports fail, don't emit undefined identifier errorsAndrew Kelley
2016-02-13a = b % c uses the types of b and c instead of aAndrew Kelley
2016-02-13parseh: fix branching on undefined memoryAndrew Kelley
2016-02-13add @ctz, @clz and compiler_rt implementationAndrew Kelley
2016-02-12if statement children nodes know if they're compiled outAndrew Kelley
2016-02-12avoid codegening functions never called from conditional compilationAndrew Kelley
2016-02-12add @compile_var("environ")Andrew Kelley
2016-02-11add @compile_var("os") and @compile_var("arch")Andrew Kelley
2016-02-11add compile error for missing enumeration value in switchAndrew Kelley
2016-02-11fix division by 0 crashing compilerAndrew Kelley
2016-02-11ability to cross compileAndrew Kelley
2016-02-09don't create debug type for void arraysAndrew Kelley
2016-02-09if statements can be const expr evaluatedAndrew Kelley
2016-02-09@const_eval returns poison value for type when it failsAndrew Kelley