Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gm2
/
pimlib
/
wideset
/
run
/
pass
/
highbit.mod
blob: c9c872a62f31153fbc1a2de5b4e9f4e3cf57d6b9 [
file
] [
log
] [
blame
]
MODULE highbit
;
FROM libc IMPORT printf
;
TYPE
set
=
BITSET
;
CONST
HighBit
=
MAX
(
set
)
;
BEGIN
printf
(
"the MAX (set) = %d\n"
,
HighBit
)
END
highbit
.