Similar to d39b4ce3ce
Using "eabi" or "gnueabi" for aarch64 targets is a common mistake and
warned by Clang Driver. We want to avoid them elsewhere as well. Just
use the common "aarch64" without other triple components.
10 lines
253 B
C
10 lines
253 B
C
// RUN: %clang --target=aarch64 %s -S -emit-llvm -o - | FileCheck %s
|
|
|
|
_Complex long double a, b, c, d;
|
|
void test_fp128_compound_assign(void) {
|
|
// CHECK: call { fp128, fp128 } @__multc3
|
|
a *= b;
|
|
// CHECK: call { fp128, fp128 } @__divtc3
|
|
c /= d;
|
|
}
|