aboutsummaryrefslogtreecommitdiff
path: root/src/check_expr.c
Commit message (Expand)AuthorAgeFilesLines
* Fix subtype polymorphism implicit conversionGinger Bill2017-04-301-21/+29
* Add type assertion for `any`Ginger Bill2017-04-301-25/+31
* Syntax change: cast(T)x => T(x); union_cast(T)x => x.(T); transmute(T)x => tr...Ginger Bill2017-04-301-116/+129
* Fix issue #51; begin work on `atomic` typesGinger Bill2017-04-281-0/+12
* Fix issue #48 dependency issueGinger Bill2017-04-261-6/+4
* `fmt.String_Buffer`, Fix issue #44, Tweak overloading rulesGinger Bill2017-04-261-20/+45
* Swap memory layout of `any`Ginger Bill2017-04-231-11/+19
* Fix `find_using_index_expr`Ginger Bill2017-04-231-17/+9
* Internal change: IntervalExpr is now a BinaryExprGinger Bill2017-04-221-5/+0
* 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