Remove MonoCompile.inlined_method. It is confusing to have so many MonoMethods in...
commitfc33a23c68985c3f7ce9763bd7242dc0f67f1fba
authorJay Krell <jay.krell@cornell.edu>
Wed, 2 Jan 2019 17:09:34 +0000 (2 09:09 -0800)
committerAleksey Kliger (λgeek) <akliger@gmail.com>
Wed, 2 Jan 2019 17:09:34 +0000 (2 12:09 -0500)
tree21287d93b8a3843d6ffddda4e6088e7c549824c9
parent9b285bf28afd93568934e2132c34b64750dfab16
Remove MonoCompile.inlined_method. It is confusing to have so many MonoMethods in MonoCompile: (#12201)

```
typedef struct {
.
.
.
    MonoMethod      *method;
    MonoMethod      *inlined_method; /* the method which is currently inlined */
    MonoMethod      *current_method; /* The method currently processed by method_to_ir () */
    MonoMethod      *method_to_register; /* The method to register in JIT info tables */
} MonoCompile;
```
so at least remove one of them that is not really used.
mono/mini/method-to-ir.c
mono/mini/mini.h