From: Anders Carlsson Date: Sun, 21 Dec 2008 03:40:32 +0000 (+0000) Subject: Commit the right version of the test X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0269709723e4cb0836a1a50964949e96dc0d1173;p=clang Commit the right version of the test git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61302 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/vla.c b/test/CodeGen/vla.c index 0881520c75..907de916fa 100644 --- a/test/CodeGen/vla.c +++ b/test/CodeGen/vla.c @@ -9,7 +9,7 @@ void a(int x) { b(arry); } -void b(int n) +int c(int n) { - sizeof(int[n]); + return sizeof(int[n]); }