commit | 6b79f4e53a860b3a3dcadd2e40dc2510559eb114 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Wed Jan 30 07:01:17 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Wed Jan 30 07:01:17 2008 +0000 |
tree | 124875c4ba5ccf210a9b30676cef802daef8a3d0 | |
parent | bef47563e403ab0c6bee7a350ecfc6305644d7ee [diff] |
fix a problem reported by Eli, caused by not keeping bool as i1 when in a register. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46552 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/exprs.c b/test/CodeGen/exprs.c index 502cb83..9115369 100644 --- a/test/CodeGen/exprs.c +++ b/test/CodeGen/exprs.c
@@ -14,3 +14,6 @@ a + i; } +_Bool test2b; +int test2() {if (test2b);} +