?? vect-8.c
字號:
/* { dg-require-effective-target vect_float } */#include <stdarg.h>#include "tree-vect.h"#define N 16float b[N] = {0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30};float a[N];int main1 (int n){ int i; /* Vectorized: unknown loop bound). */ for (i = 0; i < n; i++){ a[i] = b[i]; } /* check results: */ for (i = 0; i < n; i++) { if (a[i] != b[i]) abort (); } return 0;}int main (void){ check_vect (); return main1 (N);}/* Need misalignment support, or cgraph to delay emitting the arrays until after vectorization can force-align them. *//* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail vect_no_align } } } *//* { dg-final { cleanup-tree-dump "vect" } } */
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -