1*0a6a1f1dSLionel Sambuc // RUN: %clang -target aarch64-linux-gnuabi %s -O3 -S -emit-llvm -o - | FileCheck %s 2*0a6a1f1dSLionel Sambuc 3*0a6a1f1dSLionel Sambuc _Complex long double a, b, c, d; test_fp128_compound_assign(void)4*0a6a1f1dSLionel Sambucvoid test_fp128_compound_assign(void) { 5*0a6a1f1dSLionel Sambuc // CHECK: tail call { fp128, fp128 } @__multc3 6*0a6a1f1dSLionel Sambuc a *= b; 7*0a6a1f1dSLionel Sambuc // CHECK: tail call { fp128, fp128 } @__divtc3 8*0a6a1f1dSLionel Sambuc c /= d; 9*0a6a1f1dSLionel Sambuc } 10