Files
ispc/tests_errors/float-logical.ispc

6 lines
102 B
Plaintext

// Illegal to use ^= operator with floating-point
float foo(float a, float b) {
return a ^= b;
}