aboutsummaryrefslogtreecommitdiff
path: root/test/PCH/exprs.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/PCH/exprs.h')
-rw-r--r--test/PCH/exprs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/PCH/exprs.h b/test/PCH/exprs.h
index 016c4c6bee..9637b6ed62 100644
--- a/test/PCH/exprs.h
+++ b/test/PCH/exprs.h
@@ -56,3 +56,7 @@ typedef typeof(i? : d0) conditional_operator;
// CStyleCastExpr
typedef typeof((void *)0) void_ptr;
+// ExtVectorElementExpr
+typedef __attribute__(( ext_vector_type(2) )) double double2;
+double2 vec2;
+typedef typeof(vec2.x) ext_vector_element;