Files
clang-p2996/llvm/test/Transforms/InstCombine
Sanjay Patel 204bdc5322 [InstCombine][x86] fix insertion point bug in vector demanded elts fold (PR48476)
This transform was added at:
c63799fc52

From what I see, it's the first demanded elements transform that adds
a new instruction using the IRBuilder. There are similar folds in
the generic demanded bits chunk of instcombine that also use the
InsertPointGuard code pattern.

The tests here would assert/crash because the new instruction was
being added at the start of the demanded elements analysis rather
than at the instruction that is being replaced.
2020-12-11 17:23:35 -05:00
..
2020-06-30 19:56:37 +01:00
2020-02-27 09:06:03 -08:00
2020-02-27 09:06:03 -08:00
2020-09-05 12:37:45 +02:00
2020-08-11 11:05:42 +02:00
2020-10-12 17:55:00 +02:00
2020-08-13 22:37:44 +02:00
2020-10-17 12:20:18 -04:00

This directory contains test cases for the instcombine transformation.  The
dated tests are actual bug tests, whereas the named tests are used to test
for features that the this pass should be capable of performing.