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
/
lshl_fr1x16-2.c
blob
9be2abf88884c3af18aa216a91552e72bee6f3b9
1
extern
void
abort
(
void
);
2
3
typedef
short
fract16
;
4
5
int
main
()
6
{
7
fract16 t1
;
8
9
t1
=
__builtin_bfin_lshl_fr1x16
(
0x4004
, -
4
);
10
if
(
t1
!=
0x0400
)
11
abort
();
12
13
return
0
;
14
}
15