From: Jiangning Liu Date: Tue, 21 Oct 2014 02:19:58 +0000 (+0000) Subject: Remove including in test case, and change to use _Complex instead. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=49c893bd1e9f6e8bd808f517c37aaf053dcbea8b;p=clang Remove including in test case, and change to use _Complex instead. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@220258 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/fp128_complex.c b/test/CodeGen/fp128_complex.c index 7653bf0dd4..8775999329 100644 --- a/test/CodeGen/fp128_complex.c +++ b/test/CodeGen/fp128_complex.c @@ -1,7 +1,6 @@ // RUN: %clang -target aarch64-linux-gnuabi %s -O3 -S -emit-llvm -o - | FileCheck %s -#include -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;