[Mlir-commits] [mlir] [mlir][IR] Add `VectorTypeElementInterface` with `!llvm.ptr` (PR #133455)
Matthias Springer
llvmlistbot at llvm.org
Fri Apr 4 11:17:45 PDT 2025
================
@@ -60,15 +60,6 @@ define void @ldexp_test(float %0, <8 x float> %1, i32 %2) {
ret void
}
-; CHECK-LABEL: llvm.func @frexp_test
-define void @frexp_test(float %0, <8 x float> %1) {
- ; CHECK: llvm.intr.frexp(%{{.*}}) : (f32) -> !llvm.struct<(f32, i32)>
- %4 = call { float, i32 } @llvm.frexp.f32.i32(float %0)
- ; CHECK: llvm.intr.frexp(%{{.*}}) : (vector<8xf32>) -> !llvm.struct<(vector<8xf32>, i32)>
- %5 = call { <8 x float>, i32 } @llvm.frexp.v8f32.i32(<8 x float> %1)
- ret void
-}
-
----------------
matthias-springer wrote:
That got lost during rebasing.
https://github.com/llvm/llvm-project/pull/133455
More information about the Mlir-commits
mailing list