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
/
norm32-6.c
blob
2150c5a98b08e545fc244b598cb89992fbce5520
1
extern
void
abort
(
void
);
2
extern
void
exit
(
int
);
3
4
typedef
int
fract32
;
5
6
int
main
()
7
{
8
fract32 f
=
0
,
g
;
9
int
a
;
10
11
a
=
__builtin_bfin_norm_fr1x32
(
f
);
12
g
=
f
<<
a
;
13
if
(
g
!=
0
)
14
abort
();
15
16
exit
(
0
);
17
}
18