?? vect-ifcvt-4.c
字號(hào):
/* { dg-require-effective-target vect_condition } */#include <stdarg.h>#include <signal.h>#include "tree-vect.h"#define N 16#define MAX 42extern void abort(void); int main (){ int A[N] = {36,39,42,45,43,32,21,12,23,34,45,56,67,78,89,11}; int B[N] = {42,42,42,0,0,42,42,42,42,42,0,0,0,0,0,42}; int i, j; check_vect (); for (i = 0; i < 16; i++) A[i] = ( A[i] <= MAX ? MAX : 0); /* check results: */ for (i = 0; i < N; i++) if (A[i] != B[i]) abort (); return 0;}/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } *//* { dg-final { cleanup-tree-dump "vect" } } */
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -