repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
WIP FPC-III support
[linux/fpc-iii.git]
/
arch
/
x86
/
boot
/
compressed
/
cpuflags.c
blob
0cc1323896d19124475f817f574dd6810c4307bb
1
// SPDX-License-Identifier: GPL-2.0
2
#include
"../cpuflags.c"
3
4
bool
has_cpuflag
(
int
flag
)
5
{
6
get_cpuflags
();
7
8
return
test_bit
(
flag
,
cpu
.
flags
);
9
}