aboutsummaryrefslogtreecommitdiff
path: root/std
AgeCommit message (Expand)Author
2016-02-02unreachable causes a trap in debug modeAndrew Kelley
2016-02-02add abort function and "cold" fn attributeAndrew Kelley
2016-01-29fix some inaccuracy in float printingMovingtoMars
2016-01-29remove some magic numbers from float printingMovingtoMars
2016-01-29better f64_is_nanMovingtoMars
2016-01-29float printing mostly worksMovingtoMars
2016-01-28std: remove incorrect float printing codeAndrew Kelley
2016-01-28remove accidental printf from float printingMovingtoMars
2016-01-28cleanup float printingMovingtoMars
2016-01-28basic float printingMovingtoMars
2016-01-28malloc fails on mmap error code properlyMovingtoMars
2016-01-28check mmap return against -1MovingtoMars
2016-01-28malloc fails on proper errorsMovingtoMars
2016-01-28simple malloc and free using mmapMovingtoMars
2016-01-25variable initializations are now mandatoryAndrew Kelley
2016-01-25syntax: back to -> for return type, no more =>Andrew Kelley
2016-01-25implement %% prefix operatorAndrew Kelley
2016-01-25bootstrap: use %% operator instead of castAndrew Kelley
2016-01-25implement %% operatorAndrew Kelley
2016-01-24update std lib to use error type and global variablesAndrew Kelley
2016-01-24fix parameter access of sret functionsAndrew Kelley
2016-01-24introduce the error keyword and typeAndrew Kelley
2016-01-23various small cleanupsAndrew Kelley
2016-01-23main returns %voidAndrew Kelley
2016-01-23codegen: fix field access of arraysAndrew Kelley
2016-01-22character literal returns a number literalAndrew Kelley
2016-01-22support statically initialized array literalAndrew Kelley
2016-01-22add test for const number literalAndrew Kelley
2016-01-21number literal reworkAndrew Kelley
2016-01-20parsing error value decls and error value literalsAndrew Kelley
2016-01-18use signed integer for sizes of thingsAndrew Kelley
2016-01-18add function pointer supportAndrew Kelley
2016-01-18refactor std to use for loopAndrew Kelley
2016-01-18add for loop which can iterate over arraysAndrew Kelley
2016-01-16better main symbol prototypeAndrew Kelley
2016-01-15rename "use" to "import"Andrew Kelley
2016-01-15add void arrays testAndrew Kelley
2016-01-14overflow intrinsics take type as first argumentAndrew Kelley
2016-01-14instead of 'as' to cast, call type as functionAndrew Kelley
2016-01-13all types are now expressionsAndrew Kelley
2016-01-10detect and report top level decl dependency loopAndrew Kelley
2016-01-09add memcpy and memset intrinsicsAndrew Kelley
2016-01-09implement pub constAndrew 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-07add ?? maybe unwrapping binary operatorAndrew Kelley