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

@@ -919,10 +919,6 @@ impl<'a> Parser<'a> {
}
}
if sig.params.iter().all(|a| a.location.is_assigned()) {
sig.compute_argument_bytes();
}
Ok(sig)
}