aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/2003-11-20-ComplexDivision.c
blob: 29873f5673dd2ab8d46d69864603fc71762d351d (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null

void test(void) {
  __complex__ double C;
  double D;
  C / D;
}