This commit is contained in:
nora 2023-12-29 17:18:20 +01:00
parent 46e5662aab
commit ce2ad5a957
6 changed files with 124 additions and 110 deletions

View file

@ -138,15 +138,15 @@ pub enum StatementKind {
ptr: Operand,
value: Operand,
/// Amount of bytes to store.
size: Operand,
align: Operand,
size: u64,
align: u64,
},
Load {
result: Register,
ptr: Operand,
/// Amount of bytes to load.
size: Operand,
align: Operand,
size: u64,
align: u64,
},
BinOp {
result: Register,