mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
actually use a recent nixpkgs
This commit is contained in:
parent
36c67484b7
commit
a97f877f85
4 changed files with 16 additions and 34 deletions
|
@ -63,7 +63,6 @@ pub fn pretty_print_ir_symbols() -> bool {
|
|||
// if your changes cause this number to go down, great!
|
||||
// please change it to the lower number.
|
||||
// if it went up, maybe check that the change is really required
|
||||
|
||||
roc_error_macros::assert_sizeof_wasm!(Literal, 24);
|
||||
roc_error_macros::assert_sizeof_wasm!(Expr, 48);
|
||||
roc_error_macros::assert_sizeof_wasm!(Stmt, 64);
|
||||
|
@ -72,8 +71,8 @@ roc_error_macros::assert_sizeof_wasm!(Call, 44);
|
|||
roc_error_macros::assert_sizeof_wasm!(CallType, 36);
|
||||
|
||||
roc_error_macros::assert_sizeof_non_wasm!(Literal, 3 * 8);
|
||||
roc_error_macros::assert_sizeof_non_wasm!(Expr, 9 * 8);
|
||||
roc_error_macros::assert_sizeof_non_wasm!(Stmt, 12 * 8);
|
||||
roc_error_macros::assert_sizeof_non_wasm!(Expr, 10 * 8);
|
||||
roc_error_macros::assert_sizeof_non_wasm!(Stmt, 13 * 8);
|
||||
roc_error_macros::assert_sizeof_non_wasm!(ProcLayout, 5 * 8);
|
||||
roc_error_macros::assert_sizeof_non_wasm!(Call, 9 * 8);
|
||||
roc_error_macros::assert_sizeof_non_wasm!(CallType, 7 * 8);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue