diff options
Diffstat (limited to 'test/CodeGen/2002-07-14-MiscTests2.c')
-rw-r--r-- | test/CodeGen/2002-07-14-MiscTests2.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/2002-07-14-MiscTests2.c b/test/CodeGen/2002-07-14-MiscTests2.c new file mode 100644 index 0000000000000..ad1301766d3ab --- /dev/null +++ b/test/CodeGen/2002-07-14-MiscTests2.c @@ -0,0 +1,13 @@ +// RUN: %clang_cc1 -emit-llvm %s -o /dev/null + + +// Test ?: in function calls +extern fp(int, char*); +char *Ext; +void +__bb_exit_func (void) +{ + fp (12, Ext ? Ext : "<none>"); +} + + |