no more all common instructions
Some checks failed
/ Test-Suite (push) Failing after 20s
/ Test-Suite (pull_request) Failing after 19s

This commit is contained in:
Rowan Torbitzky-Lane 2025-04-19 23:05:41 -05:00
parent 7f43b62808
commit 4fb19410c0

View File

@ -232,8 +232,6 @@ macro_rules! make_common_instructions {
}; };
} }
macro_rules! all_common_instructions {
() => {
make_common_instructions!(int); make_common_instructions!(int);
make_common_instructions!(float); make_common_instructions!(float);
make_common_instructions!(string); make_common_instructions!(string);
@ -246,9 +244,6 @@ macro_rules! all_common_instructions {
make_common_instructions!(vector_char); make_common_instructions!(vector_char);
make_common_instructions!(code); make_common_instructions!(code);
make_common_instructions!(exec); make_common_instructions!(exec);
};
}
all_common_instructions!();
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {