mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
12 lines
243 B
LLVM
12 lines
243 B
LLVM
|
; RUN: llvm-as < %s -disable-output 2>&1 | FileCheck %s -allow-empty
|
||
|
; CHECK-NOT: error
|
||
|
; CHECK-NOT: warning
|
||
|
; RUN: verify-uselistorder < %s
|
||
|
|
||
|
define void @f1(i1 %cmp) {
|
||
|
entry:
|
||
|
br i1 %cmp, label %branch, label %branch
|
||
|
branch:
|
||
|
unreachable
|
||
|
}
|