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
/
add_fr1x32-2.c
blob
2345cb09e96489f4a9b4ea2b847afb7733b3548e
1
extern
void
abort
(
void
);
2
3
typedef
long
fract32
;
4
5
int
main
()
6
{
7
fract32 t
;
8
9
t
=
__builtin_bfin_add_fr1x32
(
0x40003000
,
0xc000d000
);
10
if
(
t
!=
0x00010000
)
11
abort
();
12
13
return
0
;
14
}
15