1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -S -simplifycfg < %s | FileCheck %s
4 define i32 @test1(i32 %x) nounwind {
7 ; CHECK-NEXT: [[I:%.*]] = shl i32 %x, 1
8 ; CHECK-NEXT: [[COND:%.*]] = icmp eq i32 [[I]], 24
9 ; CHECK-NEXT: [[DOT:%.*]] = select i1 [[COND]], i32 5, i32 0
10 ; CHECK-NEXT: ret i32 [[DOT]]
13 switch i32 %i, label %a [
27 define i32 @test2(i32 %x) nounwind {
28 ; CHECK-LABEL: @test2(
30 ; CHECK-NEXT: ret i32 0
33 switch i32 %i, label %a [
46 ; We're sign extending an 8-bit value.
47 ; The switch condition must be in the range [-128, 127], so any cases outside of that range must be dead.
49 define i1 @repeated_signbits(i8 %condition) {
50 ; CHECK-LABEL: @repeated_signbits(
52 ; CHECK-DAG: i32 -128, label %a
53 ; CHECK-DAG: i32 -1, label %a
54 ; CHECK-DAG: i32 0, label %a
55 ; CHECK-DAG: i32 127, label %a
59 %sext = sext i8 %condition to i32
60 switch i32 %sext, label %default [
61 i32 -2147483648, label %a
68 i32 2147483647, label %a