File: phi-labels.ll

package info (click to toggle)
swiftlang 6.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,791,604 kB
  • sloc: cpp: 9,901,740; ansic: 2,201,431; asm: 1,091,827; python: 308,252; objc: 82,166; f90: 80,126; lisp: 38,358; pascal: 25,559; sh: 20,429; ml: 5,058; perl: 4,745; makefile: 4,484; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (39 lines) | stat: -rw-r--r-- 613 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
; RUN: opt < %s -S | FileCheck %s

define i32 @phi_after_label(i1 %cc) {
entry:
  br i1 %cc, label %then, label %end

then:
  br label %end

end:
  %r = phi i32 [ 0, %entry ], [ 1, %then ]
  ret i32 %r
}

define void @phi_before_label(i32 %bound) {
entry:
  br label %loop

loop:
  %ctr = phi i32 [ 0, %entry ], [ %ctr.next, %loop ]
  %ctr.next = add i32 %ctr, 1
  %cc = icmp ult i32 %ctr.next, %bound
  br i1 %cc, label %loop, label %end

end:
  ret void
}

define i32 @phi_after_label_unnamed(i1 %cc) {
0:
  br i1 %cc, label %1, label %2

1:
  br label %2

2:
  %r = phi i32 [ 0, %0 ], [ 1, %1 ]
  ret i32 %r
}