1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
6 lines
191 B
Common Lisp
6 lines
191 B
Common Lisp
// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only
|
|
|
|
typedef __attribute__((ext_vector_type(4))) float float4;
|
|
|
|
float4 foo(float4 a, float4 b, float4 c, float4 d) { return a < b ? c : d; }
|