1// RUN: %clang_cc1 -emit-llvm %s -o /dev/null2 3 4// Test ?: in function calls5extern void fp(int, char*);6char *Ext;7void8__bb_exit_func (void)9{10 fp (12, Ext ? Ext : "<none>");11}12 13 14