-
-
Notifications
You must be signed in to change notification settings - Fork 91
Closed
Description
Code generated from Switch Expression is not yet optimal:
- Optimize Equal check, atm equal check is done, and then branch if true. This could be combined to one command
- Use Comparison Method of Switch Statement
- (Moved to Optimize Switch with OpCodes.Switch #398) Use Switch IL Code for Integer, long, ... (if possible). When int difference is less then 3 it should be used!
dzmitry-lahoda