mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 22:27:47 -04:00
10 lines
209 B
Common Lisp
10 lines
209 B
Common Lisp
// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only
|
|
// expected-no-diagnostics
|
|
|
|
typedef int int3 __attribute__((ext_vector_type(3)));
|
|
|
|
void test()
|
|
{
|
|
int index = (int3)(1, 2, 3).x * (int3)(3, 2, 1).y;
|
|
}
|
|
|