| OLD | NEW |
| 1 /* { dg-require-effective-target vect_int } */ | 1 /* { dg-require-effective-target vect_int } */ |
| 2 | 2 |
| 3 #include <stdlib.h> | 3 #include <stdlib.h> |
| 4 #include <stdarg.h> | 4 #include <stdarg.h> |
| 5 #include "tree-vect.h" | 5 #include "tree-vect.h" |
| 6 | 6 |
| 7 /* Compile time unknown misalignment. Cannot use loop peeling to align | 7 /* Compile time unknown misalignment. Cannot use loop peeling to align |
| 8 the store. */ | 8 the store. */ |
| 9 | 9 |
| 10 #define N 17 | 10 #define N 17 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 struct foo *fp = (struct foo *) malloc (2*sizeof (struct foo)); | 36 struct foo *fp = (struct foo *) malloc (2*sizeof (struct foo)); |
| 37 | 37 |
| 38 check_vect (); | 38 check_vect (); |
| 39 | 39 |
| 40 fbar(fp); | 40 fbar(fp); |
| 41 return 0; | 41 return 0; |
| 42 } | 42 } |
| 43 | 43 |
| 44 | 44 |
| 45 /* { dg-final { scan-tree-dump-times "Alignment of access forced using peeling"
0 "vect" } } */ | 45 /* { dg-final { scan-tree-dump-times "Alignment of access forced using peeling"
0 "vect" } } */ |
| 46 /* { dg-final { scan-tree-dump-times "Alignment of access forced using versionin
g" 1 "vect" } } */ | 46 /* { dg-final { scan-tree-dump-times "Alignment of access forced using versionin
g" 1 "vect" { xfail vect_hw_misalign} } } */ |
| 47 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */ | 47 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */ |
| 48 /* { dg-final { cleanup-tree-dump "vect" } } */ | 48 /* { dg-final { cleanup-tree-dump "vect" } } */ |
| OLD | NEW |