Merging r214670:
authorBill Wendling <isanbard@gmail.com>
Tue, 12 Aug 2014 05:41:11 +0000 (05:41 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 12 Aug 2014 05:41:11 +0000 (05:41 +0000)
commit70b7fc96d04c946b14730ed8c805c242916fc240
tree5e70e1a0aa4d635d14ef294bae858afc5e3ccc6f
parent5dddab4cb548ad48018afa184ba5a42656e21def
Merging r214670:
------------------------------------------------------------------------
r214670 | spatel | 2014-08-03 15:48:23 -0700 (Sun, 03 Aug 2014) | 8 lines

fix for PR20354 - Miscompile of fabs due to vectorization

This is intended to be the minimal change needed to fix PR20354 ( http://llvm.org/bugs/show_bug.cgi?id=20354 ). The check for a vector operation was wrong; we need to check that the fabs itself is not a vector operation.

This patch will not generate the optimal code. A constant pool load and 'and' op will be generated instead of just returning a value that we can calculate in advance (as we do for the scalar case). I've put a 'TODO' comment for that here and expect to have that patch ready soon.

There is a very similar optimization that we can do in visitFNEG, so I've put another 'TODO' there and expect to have another patch for that too.

------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_35@215428 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/SelectionDAG/DAGCombiner.cpp
test/CodeGen/X86/vec_fabs.ll