1 int notInline(); 2 isInline(int a)3 static __inline__ __attribute__ ((always_inline)) int isInline(int a) 4 { 5 int b = a + a; 6 return b; 7 } 8