Add a typecheck for the endianness conversions
[fio.git] / compiler / compiler.h
index 0a0213b60fca5204cb9d0294ffb01139baa23083..e1afcb424b8efa06380311cd1e865df3fb6f0d64 100644 (file)
 
 #define fio_unlikely(x)        __builtin_expect(!!(x), 0)
 
+/*
+ * Check at compile time that something is of a particular type.
+ * Always evaluates to 1 so you may use it easily in comparisons.
+ */
+#define typecheck(type,x) \
+({     type __dummy; \
+       typeof(x) __dummy2; \
+       (void)(&__dummy == &__dummy2); \
+       1; \
+})
+
 #endif