I must have missed these when eliminating the cast to bool cannonicalizations
[oota-llvm.git] / test / CFrontend / 2002-07-14-MiscTests2.c
1
2 // Test ?: in function calls
3 extern fp(int, char*);
4 char *Ext;
5 void
6 __bb_exit_func (void)
7 {
8   fp (12, Ext ? Ext : "<none>");
9 }
10
11