mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 06:38:47 +00:00
intrinsics.alloca now returns [^]u8
This commit is contained in:
@@ -19,7 +19,7 @@ trap :: proc() -> ! ---
|
|||||||
|
|
||||||
// Instructions
|
// Instructions
|
||||||
|
|
||||||
alloca :: proc(size, align: int) -> ^u8 ---
|
alloca :: proc(size, align: int) -> [^]u8 ---
|
||||||
cpu_relax :: proc() ---
|
cpu_relax :: proc() ---
|
||||||
read_cycle_counter :: proc() -> i64 ---
|
read_cycle_counter :: proc() -> i64 ---
|
||||||
|
|
||||||
|
|||||||
@@ -2055,7 +2055,7 @@ bool check_builtin_procedure(CheckerContext *c, Operand *operand, Ast *call, i32
|
|||||||
error(al.expr, "Alignment parameter to '%.*s' must be constant", LIT(builtin_name));
|
error(al.expr, "Alignment parameter to '%.*s' must be constant", LIT(builtin_name));
|
||||||
}
|
}
|
||||||
|
|
||||||
operand->type = t_u8_ptr;
|
operand->type = alloc_type_multi_pointer(t_u8);
|
||||||
operand->mode = Addressing_Value;
|
operand->mode = Addressing_Value;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user