Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

7 lines
180 B
Plaintext

//; RUN: %{ispc} --emit-asm %s --target=avx2-i32x8 --arch=x86-64 -o - | FileCheck %s
//; REQUIRES: X86_ENABLED
float func(float a, float b) {
//; CHECK: vaddps
return a + b;
}