repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix file cache tunables documentation
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
bitint-48.c
blob
8701ebb9b6edd01489c4e2d9e8b227d278736462
1
/* PR tree-optimization/112809 */
2
/* { dg-do compile { target bitint } } */
3
/* { dg-options "-O2" } */
4
5
#if __BITINT_MAXWIDTH__ >= 512
6
_BitInt
(
512
)
a
;
7
_BitInt
(
256
)
b
;
8
_BitInt
(
256
)
c
;
9
10
int
11
foo
(
void
)
12
{
13
return
a
== (
b
|
c
);
14
}
15
16
void
17
bar
(
void
)
18
{
19
a
/=
b
-
2
;
20
}
21
#else
22
int
i
;
23
#endif