Remove Signature's argument_bytes field.

It's not currently used. If we do need such information, it would be
better to compute it on demand.
This commit is contained in:
Dan Gohman
2018-08-28 12:36:21 -07:00
parent e60477092a
commit 6af407144c
5 changed files with 1 additions and 48 deletions

View File

@@ -57,7 +57,6 @@ pub fn legalize_libcall_signature(signature: &mut Signature, isa: &TargetIsa) {
/// `current` is true if this is the signature for the current function.
fn legalize_signature(signature: &mut Signature, current: bool, isa: &TargetIsa) {
isa.legalize_signature(signature, current);
signature.compute_argument_bytes();
}
/// Legalize the entry block parameters after `func`'s signature has been legalized.