JLang
JLang copied to clipboard
Optimize static final fields
From @gharrma on May 10, 2018 21:39
Initialize constant static
fields at compile time where possible, and don't bother doing class initialization (when these fields are accessed) if they are also final
(JLS 12.4.1).
Copied from original issue: gharrma/polyllvm#52