New testcase for PR522.

llvm-svn: 20259
This commit is contained in:
Chris Lattner 2005-02-20 23:29:23 +00:00
parent ec3f094489
commit 8a8f9032c3
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
// RUN: %llvmgcc %s -o /dev/null -S
#include <complex.h>
int foo(complex float c) {
return creal(c);
}