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
Use conditional internal functions in if-conversion
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
bfin
/
builtins
/
shr_fr1x32.c
blob
8be9ecfd117d2cff4023dddd66dc2812bc809305
1
/* { dg-do run } */
2
3
typedef
int
fract32
;
4
5
extern
void
abort
(
void
);
6
7
int
main
()
8
{
9
fract32 f
;
10
11
f
=
__builtin_bfin_shr_fr1x32
(
0x87654321
,
4
);
12
if
(
f
!=
0xf8765432
)
13
abort
();
14
15
return
0
;
16
}