cpuflags.c 148 B

12345678910111213
  1. #ifdef CONFIG_RANDOMIZE_BASE
  2. #include "../cpuflags.c"
  3. bool has_cpuflag(int flag)
  4. {
  5. get_cpuflags();
  6. return test_bit(flag, cpu.flags);
  7. }
  8. #endif