Hi,
I tried this code on c674x, and it wasn't recognized by the compiler. __float2 and __complex_mpysp were not recognized by the compiler. This is almost directly taken out of the intrinsics samples projects. What do I need to include?
__float2_t a, b, c;
__float2_t r, actual_r;
a = _ftof2(4.0F, 2.0F);
b = _ftof2(3.0F, 1.0F);
c = _complex_mpysp(a, b);
-Adam