You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building rustc, several warnings are generated regarding non-snake-case functions in middle/trans/build.rs.
There's a #![allow(non_snake_case)] directive at the top, but no #![allow(non_snake_case_functions)]. Presumably we should either add that to permit the functions as they're currently named or rename the functions.
Happy to work on this! Which approach should I take?