index
:
odin/Odin.git
bill/all_or_none
bill/any-type-switch-if-else
bill/change-license
bill/compiler-optimizations-2025-09
bill/conditional-zero
bill/const-union
bill/dir-organization
bill/disallow-128-bit
bill/fix-current-os-package
bill/fix-data-races-2026-02
bill/force-type-assert
bill/global-variable-distribution
bill/init-fini-changes
bill/integer-concatenation
bill/io-error-changes
bill/must-tail
bill/new-slice-sort
bill/range-init
bill/remove-test-suffix
bill/shared-partial-return-memory
bill/subtype-type-info
bill/typeid-sip-hash
bill/utf16-strings
core-flags
core_os2_revamp
custom-math-sin
fix-4225
llvm-12-support
master
middle-end
mimalloc
mv/libc-errors
new_os
orca-dev
text-template
update-tilde
windows-llvm-11.1.0
windows-llvm-12.0.1
windows-llvm-13.0.0
Odin Programming Language
Odin Lang
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
ir.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Fix fmt for type; remove dead stuff
Ginger Bill
2017-04-13
1
-5
/
+2
*
Fix map bug which removed N values from the beginning
Ginger Bill
2017-04-11
1
-2
/
+5
*
Fix `map` assignment bug due to growth
Ginger Bill
2017-04-11
1
-8
/
+10
*
Fix slicing bug on dynamic arrays
Ginger Bill
2017-04-11
1
-12
/
+15
*
Fix `append` crash when pointer is passed
Ginger Bill
2017-04-10
1
-3
/
+19
*
Fix segfault with heap allocation
root
2017-04-10
1
-1
/
+1
*
Basic Linux Build!
Ginger Bill
2017-04-09
1
-27
/
+11
*
Merge pull request #33 from zangent/master
gingerBill
2017-04-09
1
-0
/
+6
|
\
|
*
Merged from upstream, fixed 'args' name colission
Zachary Pierson
2017-04-06
1
-0
/
+6
*
|
Move to `Raw_*` types to raw.odin; Add size and align members to Type_Info
Ginger Bill
2017-04-07
1
-46
/
+34
|
/
*
Fix ir bugs: global variable names, untyped to any assignment
Ginger Bill
2017-04-06
1
-10
/
+27
*
Fix issue #31; Removed `down_cast`
Ginger Bill
2017-04-04
1
-0
/
+4
*
Update and regression test old demos
Ginger Bill
2017-04-02
1
-1
/
+11
*
Fix make for dynamic arrays
Ginger Bill
2017-04-02
1
-1
/
+1
*
len, cap, make; remove .count, .capacity, new_slice
Ginger Bill
2017-04-02
1
-9
/
+212
*
Fix `conj`
Ginger Bill
2017-04-01
1
-2
/
+2
*
Add Quaternions: quaternion128, quaternion256
Ginger Bill
2017-04-01
1
-23
/
+250
*
Complex numbers: complex64 complex128
Ginger Bill
2017-04-01
1
-4
/
+129
*
v0.1.3
v0.1.3
Ginger Bill
2017-03-27
1
-11
/
+35
*
Multiple type cases for `match in`
Ginger Bill
2017-03-19
1
-130
/
+106
*
Add named branches for match statements
Ginger Bill
2017-03-19
1
-45
/
+41
*
Add branch labels for loops; using list
Ginger Bill
2017-03-19
1
-76
/
+184
*
Update gb.h
Ginger Bill
2017-03-17
1
-4
/
+4
*
windows.odin TYPE_NAME to Type_Name; More SSA work and SSA printing for debug...
Ginger Bill
2017-03-12
1
-30
/
+22
*
Finally fix signed integer conversion and printing
Ginger Bill
2017-03-10
1
-14
/
+7
*
Begin work on the custom backend
Ginger Bill
2017-03-05
1
-2
/
+2
*
Refactoring of code: remove `make` prefix on many procedures
Ginger Bill
2017-03-05
1
-316
/
+315
*
Allow pointers to `append`; Fix strconv stuff; `new_slice` allows for capacity
Ginger Bill
2017-03-02
1
-5
/
+16
*
Slices now have a capacity.
Ginger Bill
2017-02-26
1
-92
/
+98
*
Ellipsis is now just `..`; Remove half-closed range operator and treat all of...
Ginger Bill
2017-02-26
1
-2
/
+1
*
++ -- statements; add strconv.odin (and replace some of the fmt procs); Fix ~...
Ginger Bill
2017-02-26
1
-1
/
+22
*
Fix Tuple type info bug
Ginger Bill
2017-02-24
1
-6
/
+6
*
v0.1.1
v0.1.1
Ginger Bill
2017-02-24
1
-6
/
+6
*
Fix minor bugs in IR for slices
Ginger Bill
2017-02-23
1
-6
/
+4
*
A decent union type with common fields and variants
Ginger Bill
2017-02-21
1
-94
/
+206
*
Begin changing `union` syntax
Ginger Bill
2017-02-19
1
-21
/
+47
*
`delete` for maps
Ginger Bill
2017-02-19
1
-1
/
+18
*
Fix overloading bug due to `#import .`; Add sys/wgl.odin
Ginger Bill
2017-02-19
1
-7
/
+0
*
Named return values but do not affect other declarations
Ginger Bill
2017-02-18
1
-3
/
+5
*
Change ternary expression precedence
Ginger Bill
2017-02-18
1
-126
/
+182
*
Ternary expression (removed if and block expression)
Ginger Bill
2017-02-14
1
-56
/
+28
*
Optional ok for `union_cast` (similar to map indices)
Ginger Bill
2017-02-14
1
-8
/
+33
*
Use a global to store the build context information
Ginger Bill
2017-02-12
1
-48
/
+46
*
Fix issue #23
Ginger Bill
2017-02-12
1
-5
/
+4
*
Record type field `names`
Ginger Bill
2017-02-12
1
-134
/
+166
*
Only check files that have been truly imported.
Ginger Bill
2017-02-11
1
-104
/
+117
*
Remove need for `type` keyword
Ginger Bill
2017-02-10
1
-2
/
+8
*
Remove Maybe type; Enum `names`
Ginger Bill
2017-02-10
1
-70
/
+90
*
Fix global maps and initialize the preload types before
Ginger Bill
2017-02-07
1
-9
/
+4
*
Map type info and fmt printing
Ginger Bill
2017-02-07
1
-4
/
+20
[prev]
[next]