Remove including <complex.h> in test case, and change to use _Complex instead.
authorJiangning Liu <jiangning.liu@arm.com>
Tue, 21 Oct 2014 02:19:58 +0000 (02:19 +0000)
committerJiangning Liu <jiangning.liu@arm.com>
Tue, 21 Oct 2014 02:19:58 +0000 (02:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@220258 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/fp128_complex.c

index 7653bf0dd4bb52ae4ff678cd8795426184a01ef7..87759993295181c5cbdaf88d9d26f42c8743b0c5 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: %clang -target aarch64-linux-gnuabi %s -O3 -S -emit-llvm -o - | FileCheck %s
-#include <complex.h>
 
-complex long double a, b, c, d;
+_Complex long double a, b, c, d;
 void test_fp128_compound_assign(void) {
   // CHECK: tail call { fp128, fp128 } @__multc3
   a *= b;