Files
ispc/tests_errors/signed-float-1.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
87 B
Plaintext

// Can't apply "signed" qualifier to "float" type
struct Foo {
signed float x;
};