Project

General

Profile

« Previous | Next » 

Revision 7333a271

Added by nvh0412 (Hoa Nguyen) 1 day ago

ZJIT: reduce string allocation in the Counter::name() (#14743)

The Counter::name() method creates a new String on every call, each call allocates memory and copies the string. Using %'static str would reduce memory pressure. The change is safe as no breaking changes to the API