bolt/deps/llvm-18.1.8/clang/test/CodeGen/2003-11-20-ComplexDivision.c

8 lines
112 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
int test(void) {
__complex__ double C;
double D;
C / D;
}