mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-14 22:38:46 +00:00
Hotfix ir equiv 2
This commit is contained in:
@@ -8,6 +8,10 @@ use crate::*;
|
||||
|
||||
impl IsEquiv for TranslationUnit {
|
||||
fn is_equiv(&self, other: &Self) -> bool {
|
||||
if self.decls.len() != other.decls.len() {
|
||||
return false;
|
||||
}
|
||||
|
||||
for (lhs, rhs) in izip!(&self.decls, &other.decls) {
|
||||
if lhs.0 != rhs.0 {
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user