about summary refs log tree commit diff homepage
path: root/test/VectorInstructions/oob-read-llvm-geq11.c
AgeCommit message (Collapse)Author
2020-12-04Test reflecting the LLVM 11 behavior for transforming reads of the form ↵Cristian Cadar
f[k], with k symbolic and f a 4-element vector into something along the lines: if k == 0 => f[0] elif k == 1 => f[1] elif k == 2 => f[2] elif k == 3 => f[3] else ==> undef