xref: /llvm-project/llvm/test/CodeGen/RISCV/fold-binop-into-select-return-constant.ll (revision ffc459de7540eaf9bdbcb7b7cc2376fd7e9e7f11)
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
2; RUN: llc -mtriple=riscv64 -mattr=+m < %s  | FileCheck  %s
3
4define i64 @fold_binop_into_select_return_constant(i1 %c) {
5; CHECK-LABEL: fold_binop_into_select_return_constant:
6; CHECK:       # %bb.0: # %entry
7; CHECK-NEXT:    li a0, 0
8; CHECK-NEXT:    ret
9entry:
10  %select1 = select i1 %c, i32 4, i32 8
11  %select2 = sext i32 %select1 to i64
12  %div1 = sdiv i64 %select2, -5141143369814759789
13  ret i64 %div1
14}
15