commit | a3460ac8a17bd82fc21db9ff8db7c7efcb5bb1a9 | [log] [tgz] |
---|---|---|
author | Eli Friedman <eli.friedman@gmail.com> | Wed Mar 04 04:25:14 2009 +0000 |
committer | Eli Friedman <eli.friedman@gmail.com> | Wed Mar 04 04:25:14 2009 +0000 |
tree | 8066e3e4ccd2fa2809ac16d4d1ab3f4243b0d0b7 | |
parent | 24e1e707b4c362f18e371e2bbf054a8345b57bfa [diff] |
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]; +}