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-4.c
blob
7a5e873a9b5db609132acd034325b6c511ba11da
1
/* { dg-do compile } */
2
/* { dg-options "-Os -mtune=core2" } */
3
4
extern
void
foo
(
void
);
5
6
int
test
(
long
x
)
7
{
8
if
(
x
& (
0x01
UL
<<
10
))
9
foo
();
10
11
return
0
;
12
}
13
14
/* { dg-final { scan-assembler "btl\[ \t\]" } } */