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