1 ; RUN: opt < %s -basicaa -dse -enable-dse-partial-store-merging=false -S | FileCheck %s
2 target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-v64:64:64-v128:128:128"
4 ; Ensure that the dead store is deleted in this case. It is wholely
5 ; overwritten by the second store.
6 define void @test1(i32 *%V) {
7 %V2 = bitcast i32* %V to i8* ; <i8*> [#uses=1]
9 store i32 1234567, i32* %V
11 ; CHECK-LABEL: @test1(
12 ; CHECK-NEXT: store i32 1234567
15 ; Note that we could do better by merging the two stores into one.
16 define void @test2(i32* %P) {
17 ; CHECK-LABEL: @test2(
20 %Q = bitcast i32* %P to i16*
27 define i32 @test3(double %__x) {
28 ; CHECK-LABEL: @test3(
30 %__u = alloca { [3 x i32] }
31 %tmp.1 = bitcast { [3 x i32] }* %__u to double*
32 store double %__x, double* %tmp.1
33 %tmp.4 = getelementptr { [3 x i32] }, { [3 x i32] }* %__u, i32 0, i32 0, i32 1
34 %tmp.5 = load i32, i32* %tmp.4
35 %tmp.6 = icmp slt i32 %tmp.5, 0
36 %tmp.7 = zext i1 %tmp.6 to i32
41 define void @test4(i8* %P) {
42 ; CHECK-LABEL: @test4(
44 ; CHECK-NEXT: store double
46 store i8 19, i8* %P ;; dead
47 %A = getelementptr i8, i8* %P, i32 3
49 store i8 42, i8* %A ;; dead
51 %Q = bitcast i8* %P to double*
52 store double 0.0, double* %Q
57 declare void @test5a(i32*)
58 define void @test5(i32 %i) nounwind ssp {
60 %B = bitcast i32* %A to i8*
61 %C = getelementptr i8, i8* %B, i32 %i
62 store i8 10, i8* %C ;; Dead store to variable index.
65 call void @test5a(i32* %A)
67 ; CHECK-LABEL: @test5(
69 ; CHECK-NEXT: store i32 20
70 ; CHECK-NEXT: call void @test5a
73 declare void @test5a_as1(i32*)
74 define void @test5_addrspacecast(i32 %i) nounwind ssp {
76 %B = addrspacecast i32* %A to i8 addrspace(1)*
77 %C = getelementptr i8, i8 addrspace(1)* %B, i32 %i
78 store i8 10, i8 addrspace(1)* %C ;; Dead store to variable index.
81 call void @test5a(i32* %A)
83 ; CHECK-LABEL: @test5_addrspacecast(
85 ; CHECK-NEXT: store i32 20
86 ; CHECK-NEXT: call void @test5a