1 // RUN: %clang_cc1 %s -o /dev/null -emit-llvm 2 3 double creal(_Complex double); 4 foo(__complex float c)5 int foo(__complex float c) { 6 return creal(c); 7 } 8