Files
ispc/tests_errors/unsigned-struct.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

8 lines
112 B
Plaintext

// "unsigned" qualifier is illegal with "uniform struct Foo" typ
struct Foo {
float x;
};
unsigned Foo f;