aboutsummaryrefslogtreecommitdiff
path: root/src/check_expr.c
Commit message (Expand)AuthorAgeFilesLines
* Fix constant bounds checking for slicingGinger Bill2017-04-221-6/+12
* Continue work on custom SSA; Fix double declaration in `when` statementsGinger Bill2017-04-211-1/+3
* Interval expressions for match statementsGinger Bill2017-04-211-1/+1
* Change interval syntax: .. open range, ..< half-closed rangeGinger Bill2017-04-201-0/+16
* Change Union representation for LLVM IR; fix dynamic array sizeGinger Bill2017-04-191-1/+6
* Fix bug with union literal checking crashing the compilerGinger Bill2017-04-181-3/+4
* Fix procedure calls from non-regular addressing modesGinger Bill2017-04-171-2/+4
* Fix error printing for basic directivesGinger Bill2017-04-171-2/+10
* Make the ABI changes only affect windowsGinger Bill2017-04-171-35/+41
* Change tag checking orderGinger Bill2017-04-161-20/+5
* Fix issue #37 for procedure literal scopesGinger Bill2017-04-161-16/+44
* Add `#require_results` for proceduresGinger Bill2017-04-161-1/+1
* Calling convention, change from bitcast to transmuteGinger Bill2017-04-161-0/+1
* IR emit C ABI compatible types for calling conventions (Only for x86/amd64 li...Ginger Bill2017-04-161-0/+58
* Fix non-ascii function parameters in LLVM IRGinger Bill2017-04-151-1/+1
* Add parse_int; Fix union bugs with size, alignment, and recursive definition ...Ginger Bill2017-04-141-0/+4
* Fix addressing mode rules for `match in` statementsGinger Bill2017-04-131-0/+3
* Fix slicing bug on dynamic arraysGinger Bill2017-04-111-0/+1
* Basic Linux Build!Ginger Bill2017-04-091-11/+17
* Fix `cast` to `any` of untyped constantsGinger Bill2017-04-071-3/+8
* Fix issue #31; Removed `down_cast`Ginger Bill2017-04-041-66/+1
* Update and regression test old demosGinger Bill2017-04-021-5/+3
* Update README.md with latest demoGinger Bill2017-04-021-2/+2
* len, cap, make; remove .count, .capacity, new_sliceGinger Bill2017-04-021-6/+127
* Add Quaternions: quaternion128, quaternion256Ginger Bill2017-04-011-87/+288
* Complex numbers: complex64 complex128Ginger Bill2017-04-011-3/+150
* v0.1.3v0.1.3Ginger Bill2017-03-271-160/+260
* Add branch labels for loops; using listGinger Bill2017-03-191-144/+58
* Update gb.hGinger Bill2017-03-171-6/+6
* windows.odin TYPE_NAME to Type_Name; More SSA work and SSA printing for debug...Ginger Bill2017-03-121-16/+30
* Finally fix signed integer conversion and printingGinger Bill2017-03-101-0/+1
* Refactoring of code: remove `make` prefix on many proceduresGinger Bill2017-03-051-25/+25
* Allow pointers to `append`; Fix strconv stuff; `new_slice` allows for capacityGinger Bill2017-03-021-12/+35
* fmt.odin uses ^[]byte rather than custom Buffer typeGinger Bill2017-02-261-2/+12
* Slices now have a capacity.Ginger Bill2017-02-261-12/+23
* ++ -- statements; add strconv.odin (and replace some of the fmt procs); Fix ~...Ginger Bill2017-02-261-8/+19
* v0.1.1v0.1.1Ginger Bill2017-02-241-4/+4
* A decent union type with common fields and variantsGinger Bill2017-02-211-145/+153
* Begin changing `union` syntaxGinger Bill2017-02-191-13/+67
* Unexported struct fields on selectorsGinger Bill2017-02-191-16/+32
* Unexported struct fieldsGinger Bill2017-02-191-19/+45
* `delete` for mapsGinger Bill2017-02-191-2/+32
* Fix overloading bug due to `#import .`; Add sys/wgl.odinGinger Bill2017-02-191-18/+21
* Fix overloading bug due to comparison of named typesGinger Bill2017-02-181-4/+1
* Named return values but do not affect other declarationsGinger Bill2017-02-181-27/+92
* Ternary expression (removed if and block expression)Ginger Bill2017-02-141-205/+25
* Ignore previous silly commit :P I shouldn't have move itGinger Bill2017-02-141-10/+7
* Move error handling for castingGinger Bill2017-02-141-79/+83
* Prevent `cast` on pointer to union typesGinger Bill2017-02-141-3/+14
* Optional ok for `union_cast` (similar to map indices)Ginger Bill2017-02-141-21/+12