mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 20:16:05 +00:00

Similar to d39b4ce3ce8a3c256e01bdec2b140777a332a633 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;
|
|
}
|