File: 2006-06-27-DeadSwitchCase.ll

package info (click to toggle)
llvm-toolchain-11 1%3A11.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 995,808 kB
  • sloc: cpp: 4,767,656; ansic: 760,916; asm: 477,436; python: 170,940; objc: 69,804; lisp: 29,914; sh: 23,855; f90: 18,173; pascal: 7,551; perl: 7,471; ml: 5,603; awk: 3,489; makefile: 2,573; xml: 915; cs: 573; fortran: 503; javascript: 452
file content (26 lines) | stat: -rw-r--r-- 869 bytes parent folder | download | duplicates (4)
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
; RUN: opt < %s -loop-unswitch -disable-output
; RUN: opt < %s -loop-unswitch -enable-mssa-loop-dependency=true -verify-memoryssa -disable-output

define void @init_caller_save() {
entry:
	br label %cond_true78
cond_next20:		; preds = %cond_true64
	br label %bb31
bb31:		; preds = %cond_true64, %cond_true64, %cond_next20
	%iftmp.29.1 = phi i32 [ 0, %cond_next20 ], [ 0, %cond_true64 ], [ 0, %cond_true64 ]		; <i32> [#uses=0]
	br label %bb54
bb54:		; preds = %cond_true78, %bb31
	br i1 false, label %bb75, label %cond_true64
cond_true64:		; preds = %bb54
	switch i32 %i.0.0, label %cond_next20 [
		 i32 17, label %bb31
		 i32 18, label %bb31
	]
bb75:		; preds = %bb54
	%tmp74.0 = add i32 %i.0.0, 1		; <i32> [#uses=1]
	br label %cond_true78
cond_true78:		; preds = %bb75, %entry
	%i.0.0 = phi i32 [ 0, %entry ], [ %tmp74.0, %bb75 ]		; <i32> [#uses=2]
	br label %bb54
}