mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 23:18:51 +00:00
f31e663570
Differential Revision: https://reviews.llvm.org/D24592 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@281640 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|
|
|