Skip to content

Commit

Permalink
Remove RegisterDecomposition.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasHaas authored and hernanponcedeleon committed Nov 16, 2024
1 parent ebc6b00 commit 8dd10eb
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 81 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,6 @@ public Expression visitAggregateCmpExpression(AggregateCmpExpr expr) {
final Expression right = expr.getRight().accept(this);
assert expr.getKind() == AggregateCmpOp.EQ || expr.getKind() == AggregateCmpOp.NEQ;
final boolean isEq = expr.getKind() == AggregateCmpOp.EQ;
// TODO: Fix for NEQ
if (left instanceof ConstructExpr l && right instanceof ConstructExpr r) {
if (l.getOperands().size() == r.getOperands().size()) {
if (l.getOperands().isEmpty()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ private ProcessingManager(Configuration config) throws InvalidConfigurationExcep
), Target.ALL, true
),
ProgramProcessor.fromFunctionProcessor(NormalizeLoops.newInstance(), Target.ALL, true),
// RegisterDecomposition.newInstance(),
RemoveDeadFunctions.newInstance(),
printAfterSimplification ? DebugPrint.withHeader("After simplification", Printer.Mode.ALL) : null,
Compilation.fromConfig(config), // We keep compilation global for now
Expand Down

This file was deleted.

0 comments on commit 8dd10eb

Please sign in to comment.