1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3 int test() {
4   __complex__ double C;
5   double D;
6   C / D;
7 }
8