aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2002-07-14-MiscTests2.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2002-07-14-MiscTests2.c')
-rw-r--r--test/FrontendC/2002-07-14-MiscTests2.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/FrontendC/2002-07-14-MiscTests2.c b/test/FrontendC/2002-07-14-MiscTests2.c
new file mode 100644
index 0000000..ac58926
--- /dev/null
+++ b/test/FrontendC/2002-07-14-MiscTests2.c
@@ -0,0 +1,13 @@
+// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
+
+
+// Test ?: in function calls
+extern fp(int, char*);
+char *Ext;
+void
+__bb_exit_func (void)
+{
+ fp (12, Ext ? Ext : "<none>");
+}
+
+