brintos

brintos / llvm-project-archived public Read only

0
0
Text · 131 B · 33f7e10 Raw
8 lines · c
1// RUN: %clang_cc1 %s -o /dev/null -emit-llvm2 3double creal(_Complex double);4 5int foo(__complex float c) {6    return creal(c);7}8