From d8734cf9162bc74b3c7603e4e81cb04a983bd444 Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Thu, 29 May 2008 19:17:15 +0000 Subject: For PR1338: Rename test dirs llvm-svn: 51695 --- llvm/test/CFrontend/2002-02-13-UnnamedLocal.c | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 llvm/test/CFrontend/2002-02-13-UnnamedLocal.c (limited to 'llvm/test/CFrontend/2002-02-13-UnnamedLocal.c') diff --git a/llvm/test/CFrontend/2002-02-13-UnnamedLocal.c b/llvm/test/CFrontend/2002-02-13-UnnamedLocal.c deleted file mode 100644 index 6fdc7efdd3a..00000000000 --- a/llvm/test/CFrontend/2002-02-13-UnnamedLocal.c +++ /dev/null @@ -1,21 +0,0 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null - -/* Testcase for a problem where GCC allocated xqic to a register, - * and did not have a VAR_DECL that explained the stack slot to LLVM. - * Now the LLVM code synthesizes a stack slot if one is presented that - * has not been previously recognized. This is where alloca's named - * 'local' come from now. - */ - -typedef struct { - short x; -} foostruct; - -int foo(foostruct ic); - -void test() { - foostruct xqic; - foo(xqic); -} - - -- cgit v1.2.3