1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 20:23:11 +01:00

add a note

llvm-svn: 27227
This commit is contained in:
Chris Lattner 2006-03-28 18:56:23 +00:00
parent 4c2d4d1912
commit 93559450b8

View File

@ -134,4 +134,14 @@ This would fix two problems:
2. Identical operations in different types are not getting CSE'd (e.g.
{ 0U, 0U, 0U, 0U } and {0.0, 0.0, 0.0, 0.0}.
//===----------------------------------------------------------------------===//
Two identical comparisons in predicate and nonpredicate form like this:
a = vec_cmpb(x, y);
b = vec_any_out(x, y);
Should turn into one "." compare instruction, not a dot and "nondot" form.
//===----------------------------------------------------------------------===//