Skip to content

Commit

Permalink
CHECK-LABEL-ize test. NFC
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238866 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
filcab committed Jun 2, 2015
1 parent 581e255 commit 66774f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Assembler/metadata.ll
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
; RUN: verify-uselistorder %s

; CHECK: @test
; CHECK-LABEL: @test
; CHECK: ret void, !bar !1, !foo !0
define void @test() {
add i32 2, 1, !bar !0
Expand All @@ -11,12 +11,12 @@ define void @test() {
ret void, !foo !0, !bar !1
}

; CHECK: define void @test2() !foo !2 !baz !3
; CHECK-LABEL: define void @test2() !foo !2 !baz !3
define void @test2() !foo !2 !baz !3 {
unreachable
}

; CHECK: define void @test3() !bar !3
; CHECK-LABEL: define void @test3() !bar !3
; CHECK: unreachable, !bar !4
define void @test3() !bar !3 {
unreachable, !bar !4
Expand Down

0 comments on commit 66774f6

Please sign in to comment.