blob: 5947a3e6c0e6df82c9946ded18b062bc29e1da12 [file] [log] [blame]
Will Deacond1515582017-10-24 11:22:46 +01001#ifndef __LINUX_COMPILER_TYPES_H
Mark Charlebois565cbdc2012-11-20 22:13:10 +01002#error "Please don't include <linux/compiler-clang.h> directly, include <linux/compiler.h> instead."
3#endif
4
5/* Some compiler specific definitions are overwritten here
6 * for Clang compiler
7 */
8
9#ifdef uninitialized_var
10#undef uninitialized_var
11#define uninitialized_var(x) x = *(&(x))
12#endif
Arnd Bergmannb41c29b2016-02-08 15:38:32 +010013
14/* same as gcc, this was present in clang-2.6 so we can assume it works
15 * with any version that can compile the kernel
16 */
17#define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __COUNTER__)