PR9561: A store with a negative offset (via GEP) could erroniously say that it
[oota-llvm.git] / test / Transforms / DeadStoreElimination / 2011-03-25-DSEMiscompile.ll
1 ; RUN: opt < %s -basicaa -dse -S | FileCheck %s
2 ; PR9561
3 target triple = "i386-apple-darwin9.8"
4
5 @A = external global [0 x i32]
6
7 declare cc10 void @Func2(i32*, i32*, i32*, i32)
8
9 define cc10 void @Func1(i32* noalias %Arg1, i32* noalias %Arg2, i32* %Arg3, i32 %Arg4) {
10 entry:
11   store i32 add (i32 ptrtoint ([0 x i32]* @A to i32), i32 1), i32* %Arg2
12 ; CHECK: store i32 add (i32 ptrtoint ([0 x i32]* @A to i32), i32 1), i32* %Arg2
13   %ln2gz = getelementptr i32* %Arg1, i32 14
14   %ln2gA = bitcast i32* %ln2gz to double*
15   %ln2gB = load double* %ln2gA
16   %ln2gD = getelementptr i32* %Arg2, i32 -3
17   %ln2gE = bitcast i32* %ln2gD to double*
18   store double %ln2gB, double* %ln2gE
19 ; CHECK: store double %ln2gB, double* %ln2gE
20   tail call cc10 void @Func2(i32* %Arg1, i32* %Arg2, i32* %Arg3, i32 %Arg4) nounwind
21   ret void
22 }