Skip to content

Commit c6ab5a3

Browse files
committed
Add test case
This previously produced use-after-free under asan.
1 parent d53dbb9 commit c6ab5a3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
2+
; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s
3+
4+
@g = private constant [4 x i32] [i32 122, i32 67, i32 35, i32 56]
5+
@g2 = private constant [1 x i64] [i64 1], align 8
6+
7+
define void @test(ptr %p, ptr %p2) {
8+
; CHECK-LABEL: test:
9+
; CHECK: # %bb.0:
10+
; CHECK-NEXT: addis 5, 2, .L__ModuleStringPool@toc@ha
11+
; CHECK-NEXT: addi 5, 5, .L__ModuleStringPool@toc@l
12+
; CHECK-NEXT: addi 6, 5, 12
13+
; CHECK-NEXT: std 6, 0(3)
14+
; CHECK-NEXT: addi 3, 5, 16
15+
; CHECK-NEXT: std 3, 0(4)
16+
; CHECK-NEXT: blr
17+
store ptr getelementptr inbounds ([4 x i32], ptr @g, i64 0, i64 1), ptr %p
18+
store ptr getelementptr inbounds ([4 x i32], ptr @g, i64 0, i64 2), ptr %p2
19+
ret void
20+
}

0 commit comments

Comments
 (0)