diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-25 10:37:27 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-25 10:58:11 -0400 |
commit | 12755db1aaea6f4ba1f380f5f34842b4e2a28f26 (patch) | |
tree | a7cddd2583841fa0328ca9f24affcaca1ec21f68 /all.h | |
parent | f4e0bfbbb9a69ff4ced213ec10d28411c093e495 (diff) | |
download | roux-12755db1aaea6f4ba1f380f5f34842b4e2a28f26.tar.gz |
fix type size computations in parser
The type sizes are important to get right because the ABI relies on them when it emits memory blits to pass/return structs.
Diffstat (limited to 'all.h')
-rw-r--r-- | all.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/all.h b/all.h index 4190162..5f87466 100644 --- a/all.h +++ b/all.h @@ -431,7 +431,7 @@ struct Fn { struct Typ { char name[NString]; int dark; - uint size; + ulong size; int align; struct { |