File: PR21582.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 (40 lines) | stat: -rw-r--r-- 1,358 bytes parent folder | download | duplicates (9)
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
; RUN: opt < %s -basic-aa -licm -S | FileCheck %s
@b = external global i32, align 4
@fn3.i = external global i32, align 4

declare i32 @g() nounwind

define i32 @f() {
entry:
  br label %for.cond

for.cond:                                         ; preds = %for.end, %entry
; CHECK-LABEL: for.cond:
; CHECK: store i32 0, i32* @b
  store i32 0, i32* @b, align 4
  br i1 true, label %for.body.preheader, label %for.end

for.body.preheader:                               ; preds = %for.cond
  br label %for.body

for.body:                                         ; preds = %for.body, %for.body.preheader
  %g.15 = phi i32 [ undef, %for.body ], [ 0, %for.body.preheader ]
  %arrayidx2 = getelementptr inbounds i32, i32* @fn3.i, i64 0
  %0 = load i32, i32* %arrayidx2, align 4
  %call = call i32 @g()
  br i1 false, label %for.body, label %for.end.loopexit

for.end.loopexit:                                 ; preds = %for.body
  br label %for.end

for.end:                                          ; preds = %for.end.loopexit, %for.cond
  %whatever = phi i32 [ %call, %for.end.loopexit ], [ undef, %for.cond ]
  br i1 false, label %for.cond, label %if.then

if.then:                                          ; preds = %for.end
; CHECK-LABEL: if.then:
; CHECK: phi i32 [ {{.*}}, %for.end ]
; CHECK-NOT: store i32 0, i32* @b
; CHECK: ret i32
  ret i32 %whatever
}