Files
ispc/tests_errors/signed-float.ispc
Matt Pharr 6b9b7437ed Parse and then mostly ignore "signed" qualifier.
Just issue errors if both "signed" and "unsigned" are specified,
or if "signed" is applied to a non-int type.
2011-11-29 21:41:04 -08:00

6 lines
98 B
Plaintext

// "signed" qualifier is illegal with non-integer type "float"
int foo() {
signed float x;
}