blob: f34b44c2aa08c1cbd9b2e42cb014864106b97d57 [file] [log] [blame]
Dan Gohman3c7d3082009-09-11 18:01:28 +00001; RUN: opt < %s -inline -argpromotion -instcombine -disable-output
Chris Lattnerf5313422009-08-31 05:46:59 +00002
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
8; callgraph.
9
10target 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"
11target triple = "i386-apple-darwin10.0"
12
13
14define void @list_DeleteElement(i32 (i8*, i8*)* nocapture %Test) nounwind ssp {
15entry:
16 %0 = call i32 %Test(i8* null, i8* undef) nounwind
17 ret void
18}
19
20
21define void @list_DeleteDuplicates(i32 (i8*, i8*)* nocapture %Test) nounwind ssp {
22foo:
23 call void @list_DeleteElement(i32 (i8*, i8*)* %Test) nounwind ssp
24 call fastcc void @list_Rplacd1284() nounwind ssp
25 unreachable
26
27}
28
29define internal i32 @inf_LiteralsHaveSameSubtermAndAreFromSameClause(i32* nocapture %L1, i32* nocapture %L2) nounwind readonly ssp {
30entry:
31 unreachable
32}
33
34
35define internal fastcc void @inf_GetBackwardPartnerLits(i32* nocapture %Flags) nounwind ssp {
36test:
37 call void @list_DeleteDuplicates(i32 (i8*, i8*)* bitcast (i32 (i32*, i32*)* @inf_LiteralsHaveSameSubtermAndAreFromSameClause to i32 (i8*, i8*)*)) nounwind
38 ret void
39}
40
41
42define void @inf_BackwardEmptySortPlusPlus() nounwind ssp {
43entry:
44 call fastcc void @inf_GetBackwardPartnerLits(i32* null) nounwind ssp
45 unreachable
46}
47
48define void @inf_BackwardWeakening() nounwind ssp {
49entry:
50 call fastcc void @inf_GetBackwardPartnerLits(i32* null) nounwind ssp
51 unreachable
52}
53
Chris Lattnerf5313422009-08-31 05:46:59 +000054declare fastcc void @list_Rplacd1284() nounwind ssp
Chris Lattner8a5b9f82009-10-17 05:39:39 +000055
56
57
58
59;============================
60; PR5208
61
62define void @AAA() {
63entry:
64 %A = alloca i8, i32 undef, align 1
65 invoke fastcc void @XXX()
66 to label %invcont98 unwind label %lpad156
67
68invcont98:
69 unreachable
70
71lpad156:
72 unreachable
73}
74
75declare fastcc void @YYY()
76
77define internal fastcc void @XXX() {
78entry:
79 %B = alloca i8, i32 undef, align 1
80 invoke fastcc void @YYY()
81 to label %bb260 unwind label %lpad
82
83bb260:
84 ret void
85
86lpad:
87 unwind
88}