xref: /linux/arch/x86/boot/compressed/cpuflags.c (revision 21a8b756b84ecaa0b7f29199669c151e2ce5e723)
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