blob: bf6ba388afad7174e70882004a38301bd79c38fc [file] [log] [blame]
Chris Lattnerc19ff5c2005-02-20 23:29:23 +00001// RUN: %llvmgcc %s -o /dev/null -S
2
3#include <complex.h>
4
5int foo(complex float c) {
6 return creal(c);
7}