1 ; RUN: opt < %s -inline -argpromotion -instcombine -disable-output
3 ; This test was failing because the inliner would inline @list_DeleteElement
4 ; into @list_DeleteDuplicates and then into @inf_GetBackwardPartnerLits,
5 ; turning the indirect call into a direct one. This allowed instcombine to see
6 ; the bitcast and eliminate it, deleting the original call and introducing
7 ; another one. This crashed the inliner because the new call was not in the
10 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
11 target triple = "i386-apple-darwin10.0"
14 define void @list_DeleteElement(i32 (i8*, i8*)* nocapture %Test) nounwind ssp {
16 %0 = call i32 %Test(i8* null, i8* undef) nounwind
21 define void @list_DeleteDuplicates(i32 (i8*, i8*)* nocapture %Test) nounwind ssp {
23 call void @list_DeleteElement(i32 (i8*, i8*)* %Test) nounwind ssp
24 call fastcc void @list_Rplacd1284() nounwind ssp
29 define internal i32 @inf_LiteralsHaveSameSubtermAndAreFromSameClause(i32* nocapture %L1, i32* nocapture %L2) nounwind readonly ssp {
35 define internal fastcc void @inf_GetBackwardPartnerLits(i32* nocapture %Flags) nounwind ssp {
37 call void @list_DeleteDuplicates(i32 (i8*, i8*)* bitcast (i32 (i32*, i32*)* @inf_LiteralsHaveSameSubtermAndAreFromSameClause to i32 (i8*, i8*)*)) nounwind
42 define void @inf_BackwardEmptySortPlusPlus() nounwind ssp {
44 call fastcc void @inf_GetBackwardPartnerLits(i32* null) nounwind ssp
48 define void @inf_BackwardWeakening() nounwind ssp {
50 call fastcc void @inf_GetBackwardPartnerLits(i32* null) nounwind ssp
57 declare fastcc void @list_Rplacd1284() nounwind ssp