aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/2005-02-20-AggregateSAVEEXPR.c
blob: 33f7e10ed2adeab44767cb6e9f62dc083a8dbe38 (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 %s -o /dev/null -emit-llvm

double creal(_Complex double);

int foo(__complex float c) {
    return creal(c);
}