blob: cd548c0313fc5d2a80d18088accf3e98cfef184c [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3int test() {
4 __complex__ double C;
5 double D;
6 C / D;
7}