From: Eli Friedman Date: Mon, 19 May 2008 20:17:34 +0000 (+0000) Subject: Remove illegal test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19119a819dfc50494187f6cf090abacccb45c278;p=clang Remove illegal test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51267 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/compound-literal.c b/test/CodeGen/compound-literal.c index bc185b24dc..a99ffe8170 100644 --- a/test/CodeGen/compound-literal.c +++ b/test/CodeGen/compound-literal.c @@ -9,5 +9,4 @@ int xxx() { int* a = &(int){1}; struct s {int a, b, c;} * b = &(struct s) {1, 2, 3}; _Complex double * x = &(_Complex double){1.0f}; -_Complex double * y = &(_Complex double){}; }