forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove addBlockByrefAddress(), it is dead code as far as clang is con…
…cerned. This patch removes addBlockByrefAddress(), it is dead code as far as clang is concerned: Every byref block capture is emitted with a complex expression that is equivalent to what this function does. rdar://problem/31629055 Differential Revision: https://reviews.llvm.org/D51763 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@341737 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
1 parent
68a9873
commit 90c166c
Showing
4 changed files
with
27 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
; RUN: llvm-as -disable-output <%s 2>&1| FileCheck %s | ||
|
||
; CHECK: BlockByRef variable without complex expression | ||
; CHECK: warning: ignoring invalid debug info | ||
|
||
define void @foo() { | ||
entry: | ||
%s = alloca i32 | ||
call void @llvm.dbg.declare(metadata i32* %s, metadata !2, metadata !DIExpression()), !dbg !DILocation(scope: !1) | ||
ret void | ||
} | ||
|
||
declare void @llvm.dbg.declare(metadata, metadata, metadata) | ||
|
||
!llvm.module.flags = !{!0} | ||
!0 = !{i32 2, !"Debug Info Version", i32 3} | ||
!1 = distinct !DISubprogram() | ||
!2 = !DILocalVariable(scope: !1, type: !3) | ||
!3 = !DICompositeType(tag: DW_TAG_structure_type, flags: DIFlagBlockByrefStruct) |