Home | History | Annotate | Download | only in FrontendC
      1 // RUN: %llvmgcc -S %s -o -
      2 // rdar://7208839
      3 
      4 extern inline int f1 (void) {return 1;}
      5 int f3 (void) {return f1();}
      6 int f1 (void) {return 0;}
      7