File: remove-bbs-unwinded-to.ll

package info (click to toggle)
llvm-toolchain-17 1%3A17.0.6-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,799,624 kB
  • sloc: cpp: 6,428,607; ansic: 1,383,196; asm: 793,408; python: 223,504; objc: 75,364; f90: 60,502; lisp: 33,869; pascal: 15,282; sh: 9,684; perl: 7,453; ml: 4,937; awk: 3,523; makefile: 2,889; javascript: 2,149; xml: 888; fortran: 619; cs: 573
file content (56 lines) | stat: -rw-r--r-- 1,660 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
; RUN: llvm-reduce -abort-on-invalid-reduction --delta-passes=basic-blocks --test FileCheck --test-arg --check-prefixes=CHECK-ALL,CHECK-INTERESTINGNESS0 --test-arg %s --test-arg --input-file %s -o %t.0
; RUN: FileCheck --check-prefixes=CHECK-ALL,CHECK-FINAL0 %s < %t.0

; RUN: llvm-reduce -abort-on-invalid-reduction --delta-passes=basic-blocks --test FileCheck --test-arg --check-prefixes=CHECK-INTERESTINGNESS1 --test-arg %s --test-arg --input-file %s -o %t.1
; RUN: FileCheck --check-prefixes=CHECK-ALL,CHECK-FINAL1 %s < %t.1

declare i32 @maybe_throwing_callee()

; CHECK-ALL: declare void @did_not_throw(i32)
declare void @did_not_throw(i32)

declare void @thrown()

; CHECK-ALL: define void @caller()
define void @caller() personality ptr @__gxx_personality_v0 {
; CHECK-ALL: bb:
; CHECK-FINAL1-NEXT: br label %bb1
bb:
; CHECK-INTERESTINGNESS0: label %bb3
; CHECK-FINAL0: br label %bb3
  %i0 = invoke i32 @maybe_throwing_callee()
          to label %bb3 unwind label %bb1

bb1:
  landingpad { ptr, i32 } catch ptr null
; CHECK-INTERESTINGNESS1: call void @thrown()

; CHECK-FINAL1: bb1:
; CHECK-FINAL1-NEXT: call void @thrown()
; CHECK-FINAL1-NEXT: ret void
  call void @thrown()
  br label %bb4

; CHECK-INTERESTINGNESS0: bb3:
; CHECK-FINAL0: bb3:
bb3:
; CHECK-INTERESTINGNESS0: call void @did_not_throw(i32
; CHECK-INTERESTINGNESS0: br label %bb4

; CHECK-FINAL0: call void @did_not_throw(i32 0)
; CHECK-FINAL0: br label %bb4

  call void @did_not_throw(i32 %i0)
  br label %bb4

; RESULT0: bb4:
; RESULT0-NEXT: ret void

; CHECK-INTERESTINGNESS0: bb4:
; CHECK-INTERESTINGNESS0-NEXT: ret void
bb4:
  ret void
}


declare i32 @__gxx_personality_v0(...)