JIT: fix confusing inline failure reason
authorAndy Ayers <andya@microsoft.com>
Thu, 9 Feb 2017 22:23:45 +0000 (14:23 -0800)
committerAndy Ayers <andya@microsoft.com>
Thu, 9 Feb 2017 22:23:45 +0000 (14:23 -0800)
commit0826f9dee6a8fdf8266523945708a684376b0280
treeb1e1314c069103bbc18b327d5ca897c85c24c123
parent28d04376fe54aea392d75d478bd468f14d134e67
JIT: fix confusing inline failure reason

When attempting to inline a method from the core library, the inline
will fail if the method being inlined has a noinline callee; the
presumption being that the callee expects to be able to find it's
immediate caller on the stack (this may or not may be the case, see #8102).

Update the failure message for this case to hopefully better explain
why the inline doesn't happen.
src/jit/importer.cpp
src/jit/inline.def