diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 |
commit | 06d4ba388873e6d1cfa9cd715a8935ecc8cd2097 (patch) | |
tree | 3eb853da77d46cc77c4b017525a422f9ddb1385b /test/CodeGen/fp128_complex.c | |
parent | 30d791273d07fac9c0c1641a0731191bca6e8606 (diff) |
Notes
Diffstat (limited to 'test/CodeGen/fp128_complex.c')
-rw-r--r-- | test/CodeGen/fp128_complex.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/fp128_complex.c b/test/CodeGen/fp128_complex.c new file mode 100644 index 000000000000..877599932951 --- /dev/null +++ b/test/CodeGen/fp128_complex.c @@ -0,0 +1,9 @@ +// RUN: %clang -target aarch64-linux-gnuabi %s -O3 -S -emit-llvm -o - | FileCheck %s + +_Complex long double a, b, c, d; +void test_fp128_compound_assign(void) { + // CHECK: tail call { fp128, fp128 } @__multc3 + a *= b; + // CHECK: tail call { fp128, fp128 } @__divtc3 + c /= d; +} |