diff options
Diffstat (limited to 'llvm/test/Bitcode/use-list-order.ll')
-rw-r--r-- | llvm/test/Bitcode/use-list-order.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Bitcode/use-list-order.ll b/llvm/test/Bitcode/use-list-order.ll index 5309857c2d6..0abbc5fe635 100644 --- a/llvm/test/Bitcode/use-list-order.ll +++ b/llvm/test/Bitcode/use-list-order.ll @@ -120,7 +120,7 @@ entry: } ; Check for when an instruction is its own user. -define void @selfUser() { +define void @selfUser(i1 %a) { entry: ret void @@ -129,7 +129,7 @@ loop1: loop2: %var = phi i32 [ %var, %loop1 ], [ %var, %loop2 ] - br label %loop1 + br label %loop2 } ; Check that block addresses work. |