http://llvm.org/bugs/show_bug.cgi?id=10580

Bruno Cardoso Lopes <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED

--- Comment #1 from Bruno Cardoso Lopes <[email protected]> 2011-08-08 
19:49:30 CDT ---
Hi Matt,

I've added the AVX part of this in r137090. But keep in mind that if you want
to generate cmp*ps/pd variants you should sign extended the result, so in the
correct testcase is:

define <8 x i32> @cmp00(<8 x float> %a, <8 x float> %b) nounwind readnone {
  %bincmp = fcmp olt <8 x float> %a, %b
  %s = sext <8 x i1> %bincmp to <8 x i32>
  ret <8 x i32> %s
}

-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to