diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:44:14 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:44:14 +0000 |
| commit | 2b6b257f4e5503a7a2675bdb8735693db769f75c (patch) | |
| tree | e85e046ae7003fe3bcc8b5454cd0fa3f7407b470 /test/CodeGen/fp128_complex.c | |
| parent | b4348ed0b7e90c0831b925fbee00b5f179a99796 (diff) | |
Notes
Diffstat (limited to 'test/CodeGen/fp128_complex.c')
| -rw-r--r-- | test/CodeGen/fp128_complex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/fp128_complex.c b/test/CodeGen/fp128_complex.c index 877599932951..48659d224168 100644 --- a/test/CodeGen/fp128_complex.c +++ b/test/CodeGen/fp128_complex.c @@ -1,9 +1,9 @@ -// RUN: %clang -target aarch64-linux-gnuabi %s -O3 -S -emit-llvm -o - | FileCheck %s +// RUN: %clang -target aarch64-linux-gnuabi %s -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 + // CHECK: call { fp128, fp128 } @__multc3 a *= b; - // CHECK: tail call { fp128, fp128 } @__divtc3 + // CHECK: call { fp128, fp128 } @__divtc3 c /= d; } |
