Files
Odin/base/runtime
Jeroen van Rijn 0087d6d62e Add preserve/* to base:runtime
```odin
none :: proc "preserve/none" () {}
most :: proc "preserve/most" () {}
all  :: proc "preserve/all"  () {}

print_cc :: proc(type: any) {
	ti := type_info_of(type.id)
	p := ti.variant.(runtime.Type_Info_Procedure)
	fmt.println(p.convention)
}

main :: proc() {
	print_cc(none)
	print_cc(most)
	print_cc(all)
}
```
2026-03-08 15:05:23 +01:00
..
2026-03-08 15:05:23 +01:00
2025-08-08 15:34:30 +11:00
2025-07-31 16:40:40 +02:00
2025-08-29 12:41:38 -07:00
2026-01-28 11:54:17 +00:00
2025-08-08 13:29:49 +01:00
2024-06-05 20:57:39 +02:00
2024-06-29 12:16:43 +01:00
2025-11-05 13:44:14 +00:00