We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
IntoIterator
1 parent fa7545e commit 8923e42Copy full SHA for 8923e42
src/compiler_builtins.rs
@@ -7,7 +7,7 @@ macro builtin_functions($register:ident; $(fn $name:ident($($arg_name:ident: $ar
7
8
#[cfg(feature = "jit")]
9
pub(crate) fn $register(builder: &mut cranelift_jit::JITBuilder) {
10
- for &(name, val) in &[$((stringify!($name), $name as *const u8)),*] {
+ for (name, val) in [$((stringify!($name), $name as *const u8)),*] {
11
builder.symbol(name, val);
12
}
13
0 commit comments