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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
bt-mask-2.c
blob
babfc2bcd364bd819643469085bbfa32e19dca10
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -mtune=core2" } */
3
4
void
foo
(
void
);
5
6
int
test
(
long
x
,
long
n
)
7
{
8
n
&=
0x3f
;
9
10
if
(
x
& ((
long
)
0x01
<<
n
))
11
foo
();
12
13
return
0
;
14
}
15
16
/* { dg-final { scan-assembler-not "and\[lq\]\[ \t\]" } } */