10 lines · c
1// RUN: %clang --target=aarch64 %s -S -emit-llvm -o - | FileCheck %s2 3_Complex long double a, b, c, d;4void test_fp128_compound_assign(void) {5 // CHECK: call { fp128, fp128 } @__multc36 a *= b;7 // CHECK: call { fp128, fp128 } @__divtc38 c /= d;9}10