blob: 63acd469c5f302416eedbc1c76276e3c8371ee8c [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade %s | llvm-as | llc
2
3;; GetMemInstArgs() folded the two getElementPtr instructions together,
4;; producing an illegal getElementPtr. That's because the type generated
5;; by the last index for the first one is a structure field, not an array
6;; element, and the second one indexes off that structure field.
7;; The code is legal but not type-safe and the two GEPs should not be folded.
8;;
9;; This code fragment is from Spec/CINT2000/197.parser/197.parser.bc,
10;; file post_process.c, function build_domain().
11;; (Modified to replace store with load and return load value.)
12;;
13
14%Domain = type { sbyte*, int, int*, int, int, int*, %Domain* }
15%domain_array = uninitialized global [497 x %Domain]
16
17implementation; Functions:
18
19declare void %opaque([497 x %Domain]*)
20
21int %main(int %argc, sbyte** %argv) {
22bb0: ;[#uses=0]
23 call void %opaque([497 x %Domain]* %domain_array)
24 %cann-indvar-idxcast = cast int %argc to long
25 %reg841 = getelementptr [497 x %Domain]* %domain_array, long 0, long %cann-indvar-idxcast, uint 3
26 %reg846 = getelementptr int* %reg841, long 1
27 %reg820 = load int* %reg846
28 ret int %reg820
29}