Home | History | Annotate | Download | only in FrontendC
      1 // RUN: %llvmgcc -S %s -o -  -fnested-functions
      2 // PR1274
      3 
      4 void Bork() {
      5   void Fork(const int *src, int size) {
      6     int i = 1;
      7     int x;
      8 
      9     while (i < size)
     10       x = src[i];
     11   }
     12 }
     13 
     14 void foo(void *a){
     15   inline void foo_bar() {
     16     a += 1;
     17   }
     18 }
     19