diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-05-29 19:17:15 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-05-29 19:17:15 +0000 |
commit | 0b85642898bd81209e56e8098c065e2975d455a0 (patch) | |
tree | 9059e4d73006c90d725ee560da049a3ff6b66691 /test/FrontendC/2002-02-13-UnnamedLocal.c | |
parent | fcc6350ac9b99d6590f5256d26bfa489b4531fb3 (diff) | |
download | external_llvm-0b85642898bd81209e56e8098c065e2975d455a0.zip external_llvm-0b85642898bd81209e56e8098c065e2975d455a0.tar.gz external_llvm-0b85642898bd81209e56e8098c065e2975d455a0.tar.bz2 |
For PR1338: Rename test dirs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51695 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC/2002-02-13-UnnamedLocal.c')
-rw-r--r-- | test/FrontendC/2002-02-13-UnnamedLocal.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/FrontendC/2002-02-13-UnnamedLocal.c b/test/FrontendC/2002-02-13-UnnamedLocal.c new file mode 100644 index 0000000..6fdc7ef --- /dev/null +++ b/test/FrontendC/2002-02-13-UnnamedLocal.c @@ -0,0 +1,21 @@ +// 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); +} + + |