Does the C # compiler option / JITter command line optimization include?

I read Eric Lippert article on / optimize line command for C # compiler. This article describes which optimizers the compiler performs. However, it remains unclear to me whether this parameter affects JIT optimization. It is possible that this parameter will cause the compiler to emit some metadata that jitter can understand in order to change the "optimization mode". Is there any link that can confirm one way or another if this parameter really affects the JITter?

+5
source share
1 answer

Is there a link that can confirm one way or another if this parameter really affects the JITter?

CLR # book, 3- ( 1, . 13), . /optimize+ # IL, , JIT. , , . , - CorDebugJITCompilerFlags.

+5

All Articles