1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/Bitcode/blockaddress.ll
Nick Lewycky 5678c8dcc2 It's valid to take the blockaddress of a different function, so remove this
assert in the bitcode writer. No change needed because the ValueEnumerator holds
a whole-module numbering anyhow. Fixes PR9857!

llvm-svn: 131016
2011-05-06 21:09:44 +00:00

31 lines
529 B
LLVM

; RUN: llvm-as < %s | llvm-dis | FileCheck %s
; PR9857
define void @f(i8** nocapture %ptr1) {
; CHECK: define void @f
entry:
br label %here.i
here.i:
store i8* blockaddress(@doit, %here), i8** %ptr1, align 8
; CHECK: blockaddress(@doit, %here)
br label %doit.exit
doit.exit:
ret void
}
define void @doit(i8** nocapture %pptr) {
; CHECK: define void @doit
entry:
br label %here
here:
store i8* blockaddress(@doit, %here), i8** %pptr, align 8
; CHECK: blockaddress(@doit, %here)
br label %end
end:
ret void
}