xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/fp128_complex.c (revision 00b67f09dd46474d133c95011a48590a8e8f94c7)
1 // RUN: %clang -target aarch64-linux-gnuabi %s -O3 -S -emit-llvm -o - | FileCheck %s
2 
3 _Complex long double a, b, c, d;
4 void test_fp128_compound_assign(void) {
5   // CHECK: tail call { fp128, fp128 } @__multc3
6   a *= b;
7   // CHECK: tail call { fp128, fp128 } @__divtc3
8   c /= d;
9 }
10