1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00
llvm-mirror/test/Other/print-cfg-sccs.ll
Ehud Katz c0f1b37259 [PrintSCC] Fix printing a basic-block without a name
Print a basic-block as an operand to handle the case where it has no
name.

Differential Revision: https://reviews.llvm.org/D80552
2020-05-29 20:14:19 +03:00

28 lines
450 B
LLVM

; RUN: opt -print-cfg-sccs -disable-output < %s 2>&1 | FileCheck %s
; CHECK: SCCs for Function test in PostOrder:
; CHECK-NEXT: SCC #1 : %exit,
; CHECK-NEXT: SCC #2 : %0,
; CHECK-NEXT: SCC #3 : %3,
; CHECK-NEXT: SCC #4 : %2, %1,
; CHECK-NEXT: SCC #5 : %entry,
define void @test(i1 %cond) {
entry:
br i1 %cond, label %0, label %1
0:
br label %exit
1:
br label %2
2:
br i1 %cond, label %1, label %3
3:
br label %exit
exit:
ret void
}