summaryrefslogtreecommitdiffstats
path: root/llvm/test/Bitcode
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-08-16 01:54:37 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-08-16 01:54:37 +0000
commit5a5fd7b1b33be5f6c83bf5eda08e0d053805c7da (patch)
treefe562eb63f89242c2f46a3efb8fbd574f6d83a31 /llvm/test/Bitcode
parent1318364e3e95a0df24c607b478fab7034580618c (diff)
downloadbcm5719-llvm-5a5fd7b1b33be5f6c83bf5eda08e0d053805c7da.tar.gz
bcm5719-llvm-5a5fd7b1b33be5f6c83bf5eda08e0d053805c7da.zip
BitcodeReader: Only create one basic block for each blockaddress
Block address forward-references are implemented by creating a `BasicBlock` ahead of time that gets inserted in the `Function` when it's eventually encountered. However, if the same blockaddress was used in two separate functions that were parsed *before* the referenced function (and the blockaddress was never used at global scope), two separate basic blocks would get created, one of which would be forgotten creating invalid IR. This commit changes the forward-reference logic to create only one basic block (and always return the same blockaddress). llvm-svn: 215805
Diffstat (limited to 'llvm/test/Bitcode')
-rw-r--r--llvm/test/Bitcode/blockaddress.ll14
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/test/Bitcode/blockaddress.ll b/llvm/test/Bitcode/blockaddress.ll
index 305118c83b8..83fae48bf2f 100644
--- a/llvm/test/Bitcode/blockaddress.ll
+++ b/llvm/test/Bitcode/blockaddress.ll
@@ -44,3 +44,17 @@ here:
end:
ret void
}
+
+; Check a blockaddress taken in two separate functions before the referenced
+; function.
+define i8* @take1() {
+ ret i8* blockaddress(@taken, %bb)
+}
+define i8* @take2() {
+ ret i8* blockaddress(@taken, %bb)
+}
+define void @taken() {
+ unreachable
+bb:
+ unreachable
+}
OpenPOWER on IntegriCloud