blob: 802ad9b785a8b9906ff534242ff4a9c6221d017d [file] [log] [blame]
Peter Collingbournedb27d822011-02-15 19:46:41 +00001// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Nate Begeman6155d732010-09-20 22:41:17 +00003
4typedef __attribute__((ext_vector_type(4))) float float4;
5
6float4 foo(float4 a, float4 b, float4 c, float4 d) { return a < b ? c : d; }