Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
      2 
      3 
      4 // Test ?: in function calls
      5 extern fp(int, char*);
      6 char *Ext;
      7 void
      8 __bb_exit_func (void)
      9 {
     10   fp (12, Ext ? Ext : "<none>");
     11 }
     12 
     13 
     14