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
2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
bt-3.c
blob
1b42ffb042e81d613d1c3a930f20355f95409e8c
1
/* { dg-do compile { target { ! ia32 } } } */
2
/* { dg-options "-O2 -mtune=core2" } */
3
4
extern
void
foo
(
void
);
5
6
int
test
(
long long
x
)
7
{
8
if
(
x
& (
0x01
ULL
<<
60
))
9
foo
();
10
11
return
0
;
12
}
13
14
/* { dg-final { scan-assembler "btq\[ \t\]" } } */