forked from OSchip/llvm-project
Add a note about the MUL -> FMADD vector bug.
llvm-svn: 26874
This commit is contained in:
parent
89f33a14b8
commit
169e6238ad
|
@ -536,3 +536,13 @@ void foo(void) {
|
|||
bar (x);
|
||||
}
|
||||
|
||||
===-------------------------------------------------------------------------===
|
||||
|
||||
Altivec: Codegen'ing MUL with vector FMADD should add -0.0, not 0.0:
|
||||
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8763
|
||||
|
||||
We need to codegen -0.0 vector efficiently (no constant pool load).
|
||||
|
||||
When -ffast-math is on, we can use 0.0.
|
||||
|
||||
===-------------------------------------------------------------------------===
|
||||
|
|
Loading…
Reference in New Issue