aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2004-07-06-FunctionCast.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2004-07-06-FunctionCast.c')
-rw-r--r--test/FrontendC/2004-07-06-FunctionCast.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/FrontendC/2004-07-06-FunctionCast.c b/test/FrontendC/2004-07-06-FunctionCast.c
new file mode 100644
index 0000000..169f740
--- /dev/null
+++ b/test/FrontendC/2004-07-06-FunctionCast.c
@@ -0,0 +1,10 @@
+// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
+
+static int unused_func(void) {
+ return 1;
+}
+
+int foo(void) {
+ (void)unused_func; /* avoid compiler warning */
+ return 2;
+}