1 // RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only
2
3 typedef __attribute__((ext_vector_type(2))) unsigned int uint2;
4 typedef __attribute__((ext_vector_type(2))) int int2;
5
6 void unsignedCompareOps()
7 {
8 uint2 A, B;
9 int2 result = A != B;
10 }
11
12