repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[X86] Better handling of impossibly large stack frames (#124217)
[llvm-project.git]
/
libclc
/
generic
/
lib
/
math
/
fma.inc
blob
654208fac21ac6cdbea1448e22b790e1fb8db23c
1
_CLC_DEF _CLC_OVERLOAD __CLC_GENTYPE fma(__CLC_GENTYPE a, __CLC_GENTYPE b, __CLC_GENTYPE c) {
2
#if __CLC_FPSIZE == 32 && HAVE_HW_FMA32() == 0
3
return __clc_sw_fma(a, b, c);
4
#else
5
return __clc_fma(a, b, c);
6
#endif
7
}