Remove vestigial assertions
authorJoseph Tremoulet <jotrem@microsoft.com>
Thu, 15 Sep 2016 17:59:09 +0000 (13:59 -0400)
committerJoseph Tremoulet <jotrem@microsoft.com>
Fri, 23 Sep 2016 16:10:18 +0000 (12:10 -0400)
commit922551b8bffd655dd3661872f300253c51a6f28c
tree723ae160b0bde68ce07fb2e0eddb0d1e7b913376
parent8d42d9f12e12a107360463d6d5b22630f079c948
Remove vestigial assertions

The inliner used to have its own import path, which required calling
special inline versions of the spill helpers; these asserts were intended
to ensure that these regular spill helpers are not invoked during inlining,
which they do by asserting against `fgGlobalMorph`, since that flag was set
during inlining in the old code.  The inliner has since been updated to
re-use the main import code, and also to run when `fgGlobalMorph` is not
set anyway.  So these helpers currently run successfully during inlining,
despite the stale comment; remove the bogus assertions.
src/jit/importer.cpp