about summary refs log tree commit diff homepage
path: root/test/VectorInstructions/extract_element.c
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2020-11-28 20:56:14 +0000
committerMartinNowack <2443641+MartinNowack@users.noreply.github.com>2020-12-04 15:57:01 +0000
commit9be3e76ed1f9eb0ec86531e2437091f7f1f02c88 (patch)
tree3589e114ad33c053a38c94f69dfd415efaeb30f7 /test/VectorInstructions/extract_element.c
parent549206763cab1154fe05fc7a9a5f0e089405dcbd (diff)
downloadklee-9be3e76ed1f9eb0ec86531e2437091f7f1f02c88.tar.gz
Move all overflows from the vector instructions tests into a new file, as the overflow behaviour is different in LLVM 11.
Diffstat (limited to 'test/VectorInstructions/extract_element.c')
-rw-r--r--test/VectorInstructions/extract_element.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/VectorInstructions/extract_element.c b/test/VectorInstructions/extract_element.c
index e4e73915..6ef1bf18 100644
--- a/test/VectorInstructions/extract_element.c
+++ b/test/VectorInstructions/extract_element.c
@@ -29,7 +29,5 @@ int main() {
   assert(f[2] == 2);
   // CHECK-STDERR-NOT: extract_element.c:[[@LINE+1]]: ASSERTION FAIL
   assert(f[3] == 3);
-  // CHECK-STDERR: extract_element.c:[[@LINE+1]]: Out of bounds read when extracting element
-  printf("f[4]=%u\n", f[4]); // Out of bounds
   return 0;
 }