commit | 12b2be25f8575fb0a1f6ecf5802e3bcb78af6ada | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Fri Aug 10 17:02:59 2007 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Fri Aug 10 17:02:59 2007 +0000 |
tree | cbbf7c17188fd215287937d329fa5401d054b06d | |
parent | cc666af7d40826e6863b9baea2e90c0b46f68b1a [diff] |
make this harder git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40994 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/complex.c b/test/CodeGen/complex.c index 201ff74..6c081db 100644 --- a/test/CodeGen/complex.c +++ b/test/CodeGen/complex.c
@@ -7,3 +7,13 @@ return a * b != b * a; } + +_Complex double bar(int); +void test(_Complex double*); + +void test2(int c) { + _Complex double X; + X = bar(1); + test(&X); +} +