Continuation of PR3687: fix more places to use the right type for 
booleans.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66012 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/bool-convert.c b/test/CodeGen/bool-convert.c
index 8d801c3..5e8bae1 100644
--- a/test/CodeGen/bool-convert.c
+++ b/test/CodeGen/bool-convert.c
@@ -4,4 +4,7 @@
 _Bool* test2;
 _Bool test3[10];
 _Bool (*test4)[];
-
+void f(int x) {
+  _Bool test5;
+  _Bool test6[x];
+}