llvm-project/llvm/test/CFrontend/2003-11-20-ComplexDivision.c

8 lines
115 B
C
Raw Normal View History

2004-11-07 06:41:00 +08:00
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2003-11-21 03:27:12 +08:00
int test() {
__complex__ double C;
double D;
C / D;
}