it's probably: ```c
float Abs(float x) {
__m128 v = _mm_load_ss(&x);
v = _mm_and_ss(x, ABS_CONSTANT);
return v[0];
}