Sanjay Patel | ecdd13d | 2016-05-15 18:05:10 +0000 | [diff] [blame^] | 1 | ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py |
Benjamin Kramer | d96205c | 2011-05-14 15:57:25 +0000 | [diff] [blame] | 2 | ; RUN: opt -S -simplifycfg < %s | FileCheck %s |
| 3 | |
| 4 | define i32 @test1(i32 %x) nounwind { |
Sanjay Patel | ecdd13d | 2016-05-15 18:05:10 +0000 | [diff] [blame^] | 5 | ; CHECK-LABEL: @test1( |
| 6 | ; CHECK-NEXT: a: |
| 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]] |
| 11 | ; |
Benjamin Kramer | d96205c | 2011-05-14 15:57:25 +0000 | [diff] [blame] | 12 | %i = shl i32 %x, 1 |
| 13 | switch i32 %i, label %a [ |
Sanjay Patel | ecdd13d | 2016-05-15 18:05:10 +0000 | [diff] [blame^] | 14 | i32 21, label %b |
| 15 | i32 24, label %c |
Benjamin Kramer | d96205c | 2011-05-14 15:57:25 +0000 | [diff] [blame] | 16 | ] |
| 17 | |
| 18 | a: |
| 19 | ret i32 0 |
| 20 | b: |
| 21 | ret i32 3 |
| 22 | c: |
| 23 | ret i32 5 |
Benjamin Kramer | d96205c | 2011-05-14 15:57:25 +0000 | [diff] [blame] | 24 | } |
| 25 | |
| 26 | |
| 27 | define i32 @test2(i32 %x) nounwind { |
Sanjay Patel | ecdd13d | 2016-05-15 18:05:10 +0000 | [diff] [blame^] | 28 | ; CHECK-LABEL: @test2( |
| 29 | ; CHECK-NEXT: a: |
| 30 | ; CHECK-NEXT: ret i32 0 |
| 31 | ; |
Benjamin Kramer | d96205c | 2011-05-14 15:57:25 +0000 | [diff] [blame] | 32 | %i = shl i32 %x, 1 |
| 33 | switch i32 %i, label %a [ |
Sanjay Patel | ecdd13d | 2016-05-15 18:05:10 +0000 | [diff] [blame^] | 34 | i32 21, label %b |
| 35 | i32 23, label %c |
Benjamin Kramer | d96205c | 2011-05-14 15:57:25 +0000 | [diff] [blame] | 36 | ] |
| 37 | |
| 38 | a: |
| 39 | ret i32 0 |
| 40 | b: |
| 41 | ret i32 3 |
| 42 | c: |
| 43 | ret i32 5 |
Benjamin Kramer | d96205c | 2011-05-14 15:57:25 +0000 | [diff] [blame] | 44 | } |