llvm-project/clang/test/CodeGen/fp128_complex.c
Fangrui Song 9df71899bd [test] Replace aarch64-*-{eabi,gnueabi} with aarch64
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.
2024-02-12 15:00:45 -08:00

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;
}