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