From 3277b69d734b9c90b44ebde4ede005717e2c3b2e Mon Sep 17 00:00:00 2001 From: ed Date: Tue, 2 Jun 2009 17:52:33 +0000 Subject: Import LLVM, at r72732. --- test/FrontendC/nested-functions.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/FrontendC/nested-functions.c (limited to 'test/FrontendC/nested-functions.c') diff --git a/test/FrontendC/nested-functions.c b/test/FrontendC/nested-functions.c new file mode 100644 index 0000000..bccbef3 --- /dev/null +++ b/test/FrontendC/nested-functions.c @@ -0,0 +1,18 @@ +// RUN: %llvmgcc -S %s -o - -fnested-functions +// PR1274 + +void Bork() { + void Fork(const int *src, int size) { + int i = 1; + int x; + + while (i < size) + x = src[i]; + } +} + +void foo(void *a){ + inline void foo_bar() { + a += 1; + } +} -- cgit v1.1