Fix for x86 checked build error.
authorEugene Rozenfeld <erozen@microsoft.com>
Fri, 29 Jan 2016 19:56:25 +0000 (11:56 -0800)
committerEugene Rozenfeld <erozen@microsoft.com>
Fri, 29 Jan 2016 19:56:25 +0000 (11:56 -0800)
commit0e140be26c141fdd5bbd262e32415b3b8c93a2cb
treeab0f639436840cb56cd6be69e397d27116c2df1a
parent02d8c0f28c8008aef40775ed55e123e8280094ef
Fix for x86 checked build error.

Remove FORCEINLINE from GetUnwindDataBlob so that the compiler
always emits it in codeman.obj. The code in nidump.cpp
(NativeImageDumper::DumpReadyToRunMethod) calls this method so
we were getting link errors if GetUnwindDataBlob wasn't emitted in codeman.obj.
GetUnwindDataBlob is small enough for a compiler to inline it even without FORCEINLINE.
src/vm/codeman.cpp