PCH support for ShuffleVectorExpr and BlockDeclRefExpr
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69244 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/PCH/exprs.h b/test/PCH/exprs.h
index f02a249..a928b9b 100644
--- a/test/PCH/exprs.h
+++ b/test/PCH/exprs.h
@@ -58,7 +58,7 @@
// ExtVectorElementExpr
typedef __attribute__(( ext_vector_type(2) )) double double2;
-double2 vec2;
+extern double2 vec2, vec2b;
typedef typeof(vec2.x) ext_vector_element;
// TypesCompatibleExpr
@@ -69,3 +69,6 @@
// GNUNullExpr FIXME: needs C++
// typedef typeof(__null) null_type;
+
+// ShuffleVectorExpr
+typedef typeof(__builtin_shufflevector(vec2, vec2b, 2, 1)) shuffle_expr;