gcc_for_openeuler鲲鹏亲和优化案例.md
鲲鹏亲和优化## 使用数组加宽比较优化(array-widen-compare)
步骤 1 准备用例 test.c
#include <stdint.h>
#include <stdio.h>
#include <sys/time.h>
#define LEN 1024000
#define my_min(x, y) ((x) < (y) ? (x) : (y))
// 优化主体函数 (优化选项 -f…
2026/7/29 1:20:39