[llvm] [InstCombine] Fold reconstruction across select (PR #145102)
Macsen Casaus via llvm-commits
llvm-commits at lists.llvm.org
Sat Jun 21 07:44:24 PDT 2025
================
@@ -0,0 +1,93 @@
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
+; RUN: opt < %s -passes=instcombine -S | FileCheck %s
+
+define i40 @select_reconstruction_i40(i40 %arg0) {
+; CHECK-LABEL: define i40 @select_reconstruction_i40(
+; CHECK-SAME: i40 [[ARG0:%.*]]) {
+; CHECK-NEXT: [[TMP1:%.*]] = trunc i40 [[ARG0]] to i8
+; CHECK-NEXT: [[TMP2:%.*]] = icmp eq i8 [[TMP1]], 2
+; CHECK-NEXT: [[TMP3:%.*]] = select i1 [[TMP2]], i40 0, i40 [[ARG0]]
+; CHECK-NEXT: ret i40 [[TMP3]]
+;
+ %1 = trunc i40 %arg0 to i8
----------------
macsencasaus wrote:
Fixed.
https://github.com/llvm/llvm-project/pull/145102
More information about the llvm-commits
mailing list