From 2bafc2d5aee50e37ef06d9ce27c4a104400f803c Mon Sep 17 00:00:00 2001 From: Jiangning Liu Date: Tue, 21 Oct 2014 02:19:58 +0000 Subject: [PATCH] Remove including in test case, and change to use _Complex instead. llvm-svn: 220258 --- clang/test/CodeGen/fp128_complex.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clang/test/CodeGen/fp128_complex.c b/clang/test/CodeGen/fp128_complex.c index 7653bf0dd4bb..877599932951 100644 --- a/clang/test/CodeGen/fp128_complex.c +++ b/clang/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;