blob: dd91aa592ab21ad644a6b12bc0221fa8202d99ef [file] [log] [blame]
Tanya Lattner6ec96432011-10-17 21:00:38 +00001// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only
2
3typedef __attribute__((ext_vector_type(2))) unsigned int uint2;
4typedef __attribute__((ext_vector_type(2))) int int2;
5
6void unsignedCompareOps()
7{
8 uint2 A, B;
9 int2 result = A != B;
10}
11