1  struct a
       2  {
       3    int t;
       4    int t1;
       5  };
       6  
       7  int f(int i, int j)
       8  {
       9    struct a *t;
      10    struct a t1 = {i, j};
      11    t = &t1;
      12    auto int g(void) __attribute__((noinline));
      13    int g(void)
      14    {
      15      return t->t + t->t1;
      16    }
      17    return g();
      18  }