aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@penguin.transmeta.com>2003-03-24 17:28:46 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 20:59:42 -0700
commitb8e2af970504c27659ab90afa19ee04a273c3012 (patch)
treef4784a9e66662089e4e97b587bfa7ee5b5af1818 /target.h
parentReplace for/while/do-while loops with a generic internal (diff)
downloadsparse-b8e2af970504c27659ab90afa19ee04a273c3012.tar.gz
sparse-b8e2af970504c27659ab90afa19ee04a273c3012.tar.bz2
sparse-b8e2af970504c27659ab90afa19ee04a273c3012.zip
Handle 'enum' type sizing and alignment
Diffstat (limited to 'target.h')
-rw-r--r--target.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/target.h b/target.h
index b3194d5..1b77d0f 100644
--- a/target.h
+++ b/target.h
@@ -27,4 +27,10 @@
#define BITS_IN_POINTER 32
#define POINTER_ALIGNMENT 4
+/*
+ * Enum data types
+ */
+#define BITS_IN_ENUM 32
+#define ENUM_ALIGNMENT 4
+
#endif