Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unboxed numbers #1165

Merged
merged 7 commits into from
Mar 10, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
Ekdohibs authored Mar 10, 2023
commit 148c9a15722f2fa541ec2e82137c5697d778f372
2 changes: 1 addition & 1 deletion middle_end/flambda/flambda_to_clambda.ml
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ and to_clambda_closed_set_of_closures t env symbol
let body =
let body, body_layout = to_clambda t env_body function_decl.body in
if not (Lambda.compatible_layout body_layout function_decl.return_layout) then
Misc.fatal_errorf "Imcompatible layouts:@.body: %a@.function: %a@.%a@."
Misc.fatal_errorf "Incompatible layouts:@.body: %a@.function: %a@.%a@."
Printlambda.layout body_layout
Printlambda.layout function_decl.return_layout
Printclambda.clambda body;
Expand Down