summaryrefslogtreecommitdiff
path: root/test/DebugInfo/printdbginfo2.ll
diff options
context:
space:
mode:
authorVictor Hernandez <vhernandez@apple.com>2010-01-15 03:37:48 +0000
committerVictor Hernandez <vhernandez@apple.com>2010-01-15 03:37:48 +0000
commit283ba2fbb4a40d5f7615aba070f2f7ec161d19ac (patch)
tree2b50ef9973091db7646a7325a75f13c791a5b003 /test/DebugInfo/printdbginfo2.ll
parent8396a17bc3a6d2cb9aedd22fc15780ac8ab41662 (diff)
downloadllvm-283ba2fbb4a40d5f7615aba070f2f7ec161d19ac.tar.gz
llvm-283ba2fbb4a40d5f7615aba070f2f7ec161d19ac.tar.bz2
llvm-283ba2fbb4a40d5f7615aba070f2f7ec161d19ac.tar.xz
Improve llvm.dbg.declare intrinsic by referring directly to the storage in its first argument, via function-local metadata (instead of via a bitcast).
This patch also cleans up code that expects there to be a bitcast in the first argument and testcases that call llvm.dbg.declare. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93504 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/DebugInfo/printdbginfo2.ll')
-rw-r--r--test/DebugInfo/printdbginfo2.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/DebugInfo/printdbginfo2.ll b/test/DebugInfo/printdbginfo2.ll
index 759310fc9f..e19395b0df 100644
--- a/test/DebugInfo/printdbginfo2.ll
+++ b/test/DebugInfo/printdbginfo2.ll
@@ -19,11 +19,11 @@ entry:
call void @llvm.dbg.stoppoint(i32 6, i32 3, metadata !1)
call void @llvm.dbg.stoppoint(i32 7, i32 3, metadata !1)
%0 = bitcast %struct.foo* %b to { }* ; <{ }*> [#uses=1]
- call void @llvm.dbg.declare({ }* %0, metadata !4)
+ call void @llvm.dbg.declare(metadata !{%struct.foo* %b}, metadata !4)
; CHECK:; %0 is variable b of type foo declared at x.c:7
call void @llvm.dbg.stoppoint(i32 8, i32 3, metadata !1)
%1 = bitcast [4 x i32]* %a to { }* ; <{ }*> [#uses=1]
- call void @llvm.dbg.declare({ }* %1, metadata !8)
+ call void @llvm.dbg.declare(metadata !{[4 x i32]* %a}, metadata !8)
; CHECK:; %1 is variable a of type declared at x.c:8
call void @llvm.dbg.stoppoint(i32 9, i32 3, metadata !1)
%tmp = getelementptr inbounds %struct.foo* %b, i32 0, i32 0 ; <i32*> [#uses=1]
@@ -46,7 +46,7 @@ declare void @llvm.dbg.func.start(metadata) nounwind readnone
declare void @llvm.dbg.stoppoint(i32, i32, metadata) nounwind readnone
-declare void @llvm.dbg.declare({ }*, metadata) nounwind readnone
+declare void @llvm.dbg.declare(metadata, metadata) nounwind readnone
declare void @llvm.dbg.region.end(metadata) nounwind readnone