]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/fp128_complex.c
Vendor import of clang trunk r321530:
[FreeBSD/FreeBSD.git] / test / CodeGen / fp128_complex.c
1 // RUN: %clang -target aarch64-linux-gnuabi %s -S -emit-llvm -o - | FileCheck %s
2
3 _Complex long double a, b, c, d;
4 void test_fp128_compound_assign(void) {
5   // CHECK: call { fp128, fp128 } @__multc3
6   a *= b;
7   // CHECK: call { fp128, fp128 } @__divtc3
8   c /= d;
9 }