diff options
Diffstat (limited to 'test/VectorInstructions')
-rw-r--r-- | test/VectorInstructions/insert_element.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/VectorInstructions/insert_element.c b/test/VectorInstructions/insert_element.c index df09819d..35054fd9 100644 --- a/test/VectorInstructions/insert_element.c +++ b/test/VectorInstructions/insert_element.c @@ -5,9 +5,10 @@ // RUN: %klee --output-dir=%t.klee-out --optimize=false %t1.bc > %t.stdout.log 2> %t.stderr.log // RUN: FileCheck -check-prefix=CHECK-STDOUT -input-file=%t.stdout.log %s // RUN: FileCheck -check-prefix=CHECK-STDERR -input-file=%t.stderr.log %s +#include "klee/klee.h" #include <assert.h> -#include <stdio.h> #include <stdint.h> +#include <stdio.h> typedef uint32_t v4ui __attribute__ ((vector_size (16))); int main() { |