xref: /openbmc/linux/arch/x86/boot/compressed/cpuflags.c (revision efdbd7345f8836f7495f3ac6ee237d86cb3bb6b0)
1 #ifdef CONFIG_RANDOMIZE_BASE
2 
3 #include "../cpuflags.c"
4 
5 bool has_cpuflag(int flag)
6 {
7 	get_cpuflags();
8 
9 	return test_bit(flag, cpu.flags);
10 }
11 
12 #endif
13