Skip to content

Commit 2c88ee5

Browse files
[mlir][arith] Fix build after #171024
1 parent 359cac4 commit 2c88ee5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/test/Integration/Dialect/Arith/CPU/test-apfloat-emulation-vector.mlir

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// mlir_apfloat_wrappers in a platform-independent way.
44

55
// All floating-point arithmetics is lowered through APFloat.
6-
// RUN: mlir-opt %s --convert-arith-to-apfloat --convert-scf-to-vector | \
6+
// RUN: mlir-opt %s --convert-arith-to-apfloat --convert-scf-to-vector \
77
// RUN: --convert-scf-to-cf --convert-to-llvm | \
88
// RUN: mlir-runner -e entry --entry-point-result=void \
99
// RUN: --shared-libs=%mlir_c_runner_utils \
@@ -17,7 +17,7 @@ func.func @foo_vec() -> (vector<4xf8E4M3FN>, vector<4xf32>) {
1717
}
1818

1919
func.func @entry() {
20-
// CHECK-NEXT: ( 3.5, 3.5, 3.5, 3.5 )
20+
// CHECK: ( 3.5, 3.5, 3.5, 3.5 )
2121
%a1_vec = arith.constant dense<[1.4, 1.4, 1.4, 1.4]> : vector<4xf8E4M3FN>
2222
%b1_vec, %b2_vec = func.call @foo_vec() : () -> (vector<4xf8E4M3FN>, vector<4xf32>)
2323
%c1_vec = arith.addf %a1_vec, %b1_vec : vector<4xf8E4M3FN> // not supported by LLVM

0 commit comments

Comments
 (0)