(including inline functions) from modules in the expression parser. We now have to retain a reference to the code generator in ClangExpressionDeclMap so that any imported function bodies can be appropriately sent to that code generator. <rdar://problem/19883002> llvm-svn: 236297
8 lines
125 B
C
8 lines
125 B
C
int notInline();
|
|
|
|
static __inline__ __attribute__ ((always_inline)) int isInline(int a)
|
|
{
|
|
int b = a + a;
|
|
return b;
|
|
}
|