blob: bd129ea18a93557565dcf38a039c3089d29db8e3 [file] [log] [blame]
Douglas Gregorb81c1702009-04-27 20:06:05 +00001// Test this without pch.
Daniel Dunbara5728872009-12-15 20:14:24 +00002// RUN: %clang_cc1 -include %S/ext_vector.h -fsyntax-only -verify %s
Douglas Gregorb81c1702009-04-27 20:06:05 +00003
4// Test with pch.
Daniel Dunbara5728872009-12-15 20:14:24 +00005// RUN: %clang_cc1 -emit-pch -o %t %S/ext_vector.h
6// RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s
Douglas Gregorb81c1702009-04-27 20:06:05 +00007
8int test(float4 f4) {
9 return f4.xy; // expected-error{{float2}}
Douglas Gregorb81c1702009-04-27 20:06:05 +000010}