mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
big: Squashed shl1 bug when a larger dest was reused for a smaller result.
This commit is contained in:
@@ -24,9 +24,9 @@ PyRes :: struct {
|
||||
err: Error,
|
||||
}
|
||||
|
||||
@export test_initialize_constants :: proc "c" () -> (res: int) {
|
||||
@export test_initialize_constants :: proc "c" () -> (res: u64) {
|
||||
context = runtime.default_context();
|
||||
return initialize_constants();
|
||||
return u64(initialize_constants());
|
||||
}
|
||||
|
||||
@export test_error_string :: proc "c" (err: Error) -> (res: cstring) {
|
||||
|
||||
Reference in New Issue
Block a user