summaryrefslogtreecommitdiff
path: root/test/CodeGen/annotations-builtin.c
diff options
context:
space:
mode:
authorVolodymyr Sapsai <vsapsai@apple.com>2019-03-01 02:15:39 +0000
committerVolodymyr Sapsai <vsapsai@apple.com>2019-03-01 02:15:39 +0000
commit23c3c07e7662da02b916241b1656d667bea63891 (patch)
tree190660de4653d215e5d571fc74957f4c3c86b92d /test/CodeGen/annotations-builtin.c
parent358a36e5760dd3c6d235099a29b7be6203c7fe99 (diff)
downloadclang-23c3c07e7662da02b916241b1656d667bea63891.tar.gz
[CodeGen] Fix calling llvm.var.annotation outside of a basic block.
When we have an annotated local variable after a function returns, we generate IR that fails verification with the error > Instruction referencing instruction not embedded in a basic block! And it means that bitcast referencing alloca doesn't have a parent basic block. Fix by checking if we are at an unreachable point and skip emitting annotations. This approach is similar to the way we emit variable initializer and debug info. rdar://problem/46200420 Reviewers: rjmccall Reviewed By: rjmccall Subscribers: aprantl, jkorous, dexonsmith, cfe-commits Differential Revision: https://reviews.llvm.org/D58147 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@355166 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/annotations-builtin.c')
-rw-r--r--test/CodeGen/annotations-builtin.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/CodeGen/annotations-builtin.c b/test/CodeGen/annotations-builtin.c
index 8a3b3ffcec..e6dd3587af 100644
--- a/test/CodeGen/annotations-builtin.c
+++ b/test/CodeGen/annotations-builtin.c
@@ -43,4 +43,7 @@ int main(int argc, char **argv) {
// CHECK: call i32 @llvm.annotation.i32
// CHECK: inttoptr {{.*}} to i8**
return 0;
+
+ int after_return = __builtin_annotation(argc, "annotation_a");
+// CHECK-NOT: call i32 @llvm.annotation.i32
}