blob: 0b59acdb6e748b6fcd72ac47be5ca69810d8f6ca [file] [log] [blame]
float
test_1 (int *flag, float theta)
{
float t;
float f;
if (*flag)
t = 2.0f;
f = __builtin_sinf (theta);
if (*flag)
f *= t;
return f;
}