blob: aa313466118b2df8731475dfd93eec0d672bca9c [file] [log] [blame]
Kees Cookdd78b972013-10-10 17:18:13 -07001#ifdef CONFIG_RANDOMIZE_BASE
2
3#include "../cpuflags.c"
4
5bool has_cpuflag(int flag)
6{
H. Peter Anvin6e6a4932013-10-13 04:08:56 -07007 get_cpuflags();
Kees Cookdd78b972013-10-10 17:18:13 -07008
9 return test_bit(flag, cpu.flags);
10}
11
12#endif