1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

New testcase for PR522.

llvm-svn: 20259
This commit is contained in:
Chris Lattner 2005-02-20 23:29:23 +00:00
parent 68c342b28f
commit 49df4aa8ea

View File

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