Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
j2kun committed Dec 7, 2023
1 parent bd621ba commit 36f6fa2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/secret/distribute_generic.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ func.func @test_distribute_generic(%value: !secret.secret<i32>, %cond: i1) -> !s
// CHECK-NEXT: secret.yield %[[g1_op]] : i32
// CHECK-NEXT: } -> !secret.secret<i32>

// CHECK-NEXT: %[[g2:.*]] = secret.generic ins(%[[g1]], %[[g1]] : !secret.secret<i32>, !secret.secret<i32>) {
// CHECK-NEXT: ^[[bb2:.*]](%[[clear_g2_in0:.*]]: i32, %[[clear_g2_in1:.*]]: i32):
// CHECK-NEXT: %[[g2_op:.*]] = arith.muli %[[clear_g2_in0]], %[[clear_g2_in1]] : i32
// CHECK-NEXT: %[[g2:.*]] = secret.generic ins(%[[g1]] : !secret.secret<i32>) {
// CHECK-NEXT: ^[[bb2:.*]](%[[clear_g2_in0:.*]]: i32):
// CHECK-NEXT: %[[g2_op:.*]] = arith.muli %[[clear_g2_in0]], %[[clear_g2_in0]] : i32
// CHECK-NEXT: secret.yield %[[g2_op]] : i32
// CHECK-NEXT: } -> !secret.secret<i32>

Expand Down

0 comments on commit 36f6fa2

Please sign in to comment.