mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
0bea49c555
Differential Revision: https://reviews.llvm.org/D24592 llvm-svn: 281640
13 lines
203 B
LLVM
13 lines
203 B
LLVM
;RUN: opt < %s -analyze -dot-cfg-only 2>/dev/null
|
|
;RUN: opt < %s -analyze -passes=dot-cfg-only 2>/dev/null
|
|
;PR 1497
|
|
|
|
define void @foo() {
|
|
entry:
|
|
br label %return
|
|
|
|
return: ; preds = %entry
|
|
ret void
|
|
}
|
|
|