File: 2008-07-08-MisCompilation.ll

package info (click to toggle)
llvm-2.7 2.7-6
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 59,992 kB
  • ctags: 49,499
  • sloc: cpp: 373,792; ansic: 16,885; sh: 12,614; asm: 6,809; ada: 3,083; ml: 2,942; python: 2,671; perl: 2,404; makefile: 1,691; pascal: 1,235; exp: 399; objc: 291; lisp: 184; csh: 117; xml: 38; f90: 36
file content (25 lines) | stat: -rw-r--r-- 647 bytes parent folder | download
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
; RUN: opt < %s -loop-index-split -stats -disable-output | not grep "1 loop-index-split"
; PR 2487
@g_6 = external global i32		; <i32*> [#uses=1]

define void @func_1() nounwind  {
entry:
	br label %bb

bb:		; preds = %bb4, %entry
	%l_3.0 = phi i8 [ 0, %entry ], [ %tmp6, %bb4 ]		; <i8> [#uses=2]
	%tmp1 = icmp eq i8 %l_3.0, 0		; <i1> [#uses=1]
	br i1 %tmp1, label %bb3, label %bb4

bb3:		; preds = %bb
	store i32 1, i32* @g_6, align 4
	br label %bb4

bb4:		; preds = %bb3, %bb
	%tmp6 = add i8 %l_3.0, 1		; <i8> [#uses=2]
	%tmp9 = icmp sgt i8 %tmp6, -1		; <i1> [#uses=1]
	br i1 %tmp9, label %bb, label %return

return:		; preds = %bb4
	ret void
}