r220258 - Remove including <complex.h> in test case, and change to use _Complex instead.
Jiangning Liu
jiangning.liu at arm.com
Mon Oct 20 19:19:59 PDT 2014
Author: jiangning
Date: Mon Oct 20 21:19:58 2014
New Revision: 220258
URL: http://llvm.org/viewvc/llvm-project?rev=220258&view=rev
Log:
Remove including <complex.h> in test case, and change to use _Complex instead.
Modified:
cfe/trunk/test/CodeGen/fp128_complex.c
Modified: cfe/trunk/test/CodeGen/fp128_complex.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/fp128_complex.c?rev=220258&r1=220257&r2=220258&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/fp128_complex.c (original)
+++ cfe/trunk/test/CodeGen/fp128_complex.c Mon Oct 20 21:19:58 2014
@@ -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;
More information about the cfe-commits
mailing list