Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / include / linux / typecheck.h
blob20d310331eb51148cb0e6d21d7c693d1e11315a9
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef TYPECHECK_H_INCLUDED
3 #define TYPECHECK_H_INCLUDED
5 /*
6 * Check at compile time that something is of a particular type.
7 * Always evaluates to 1 so you may use it easily in comparisons.
8 */
9 #define typecheck(type,x) \
10 ({ type __dummy; \
11 typeof(x) __dummy2; \
12 (void)(&__dummy == &__dummy2); \
13 1; \
17 * Check at compile time that 'function' is a certain type, or is a pointer
18 * to that type (needs to use typedef for the function type.)
20 #define typecheck_fn(type,function) \
21 ({ typeof(type) __tmp = function; \
22 (void)__tmp; \
25 #endif /* TYPECHECK_H_INCLUDED */