diff options
author | Anders Carlsson <andersca@mac.com> | 2008-01-18 02:25:57 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2008-01-18 02:25:57 +0000 |
commit | a46b759d55ca607ef9bb09dd3a089418bb6ee44c (patch) | |
tree | 7e72fbd78da47933f2891bd6a266d83ba23e756f /test/CodeGen/struct.c | |
parent | b4b2f0c9e80c6613c3e9846da121632ea39bcd5d (diff) | |
download | clang-a46b759d55ca607ef9bb09dd3a089418bb6ee44c.tar.gz |
Assert that the type of the cast is equal to the _unqualified_ type of the subexpression. Fixes a problem spotted by Nuno Lopes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46158 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/struct.c')
-rw-r--r-- | test/CodeGen/struct.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/struct.c b/test/CodeGen/struct.c index 8f9ecd6080..be5917a3da 100644 --- a/test/CodeGen/struct.c +++ b/test/CodeGen/struct.c @@ -127,3 +127,12 @@ void f11() a1 = a2; a2 = a1; } + +/* Implicit casts (due to const) */ +void f12() +{ + struct _a a1; + const struct _a a2; + + a1 = a2; +}
\ No newline at end of file |