• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 %s -o /dev/null -emit-llvm
2 
foo(__complex float c)3 int foo(__complex float c) {
4     return creal(c);
5 }
6