diff options
Diffstat (limited to 'llvm/test/Transforms')
-rw-r--r-- | llvm/test/Transforms/Inline/alloca-dbgdeclare.ll | 4 | ||||
-rw-r--r-- | llvm/test/Transforms/SROA/dbg-single-piece.ll | 2 | ||||
-rw-r--r-- | llvm/test/Transforms/Util/split-bit-piece.ll | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/Transforms/Inline/alloca-dbgdeclare.ll b/llvm/test/Transforms/Inline/alloca-dbgdeclare.ll index 44ca11adaf1..78b888fd652 100644 --- a/llvm/test/Transforms/Inline/alloca-dbgdeclare.ll +++ b/llvm/test/Transforms/Inline/alloca-dbgdeclare.ll @@ -129,10 +129,10 @@ attributes #3 = { noreturn nounwind } !45 = !DILocation(line: 9, scope: !15) !46 = !DILocalVariable(name: "p1", line: 6, arg: 1, scope: !15, file: !16, type: !4) !47 = distinct !DILocation(line: 11, scope: !21) -!48 = !DIExpression(DW_OP_bit_piece, 32, 160) +!48 = !DIExpression(DW_OP_LLVM_fragment, 32, 160) !49 = !DILocation(line: 6, scope: !15, inlinedAt: !47) !50 = !DILocation(line: 11, scope: !21) -!51 = !DIExpression(DW_OP_bit_piece, 0, 32) +!51 = !DIExpression(DW_OP_LLVM_fragment, 0, 32) !52 = !DILocation(line: 7, scope: !34, inlinedAt: !47) !53 = !DILocation(line: 7, scope: !15, inlinedAt: !47) !54 = !DILocation(line: 8, scope: !34, inlinedAt: !47) diff --git a/llvm/test/Transforms/SROA/dbg-single-piece.ll b/llvm/test/Transforms/SROA/dbg-single-piece.ll index 319b7c14e6e..b8301c1df62 100644 --- a/llvm/test/Transforms/SROA/dbg-single-piece.ll +++ b/llvm/test/Transforms/SROA/dbg-single-piece.ll @@ -13,7 +13,7 @@ entry: ; CHECK-NOT: call void @llvm.dbg.value ; CHECK: call void @llvm.dbg.value(metadata %foo* undef, i64 0, {{.*}}, metadata ![[BIT_PIECE:[0-9]+]]), !dbg ; CHECK-NOT: call void @llvm.dbg.value -; CHECK: ![[BIT_PIECE]] = !DIExpression(DW_OP_bit_piece, 64, 64) +; CHECK: ![[BIT_PIECE]] = !DIExpression(DW_OP_LLVM_fragment, 64, 64) %0 = bitcast %foo* %retval to i8* %1 = getelementptr inbounds i8, i8* %0, i64 8 %2 = bitcast i8* %1 to %foo** diff --git a/llvm/test/Transforms/Util/split-bit-piece.ll b/llvm/test/Transforms/Util/split-bit-piece.ll index 9343214cd99..3d7bcac73ca 100644 --- a/llvm/test/Transforms/Util/split-bit-piece.ll +++ b/llvm/test/Transforms/Util/split-bit-piece.ll @@ -14,7 +14,7 @@ entry: %v2 = alloca i64, align 8 store i32 %hs, i32* %hs.addr, align 4 ; CHECK: call void @llvm.dbg.value(metadata i32 %hs, i64 0, metadata !{{[0-9]+}}, metadata ![[EXPR:[0-9]+]]) -; CHECK: ![[EXPR]] = !DIExpression(DW_OP_bit_piece, 0 +; CHECK: ![[EXPR]] = !DIExpression(DW_OP_LLVM_fragment, 0 call void @llvm.dbg.declare(metadata i64* %v1, metadata !9, metadata !12), !dbg !13 %0 = load i32, i32* %hs.addr, align 4 %conv = sext i32 %0 to i64 |