Skip to content

Commit

Permalink
Fix Reinterpret cmp in IREquality (#8217)
Browse files Browse the repository at this point in the history
fix Reinterpret cmp
  • Loading branch information
rootjalex committed May 14, 2024
1 parent dfaf6ad commit 211bafa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IREquality.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ struct Comparer {
cmp(&Cast::value);
break;
case IRNodeType::Reinterpret:
cmp(&Cast::value);
cmp(&Reinterpret::value);
break;
case IRNodeType::Variable:
cmp(&Variable::name);
Expand Down

0 comments on commit 211bafa

Please sign in to comment.