summary refs log tree commit diff
path: root/all.h
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-04-25 10:37:27 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-04-25 10:58:11 -0400
commit12755db1aaea6f4ba1f380f5f34842b4e2a28f26 (patch)
treea7cddd2583841fa0328ca9f24affcaca1ec21f68 /all.h
parentf4e0bfbbb9a69ff4ced213ec10d28411c093e495 (diff)
downloadroux-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.h2
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 {