blob: e0744af8a43356a14b1e8785f3d0e2b2f629c66d [file] [log] [blame]
Tanya Lattner2393a242004-11-06 23:08:26 +00001; RUN: llvm-as -f %s -o - | llc
2
Vikram S. Adved28c8c82002-09-28 18:09:05 +00003;; 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* }
Chris Lattner1fbaa0a2003-01-15 18:06:37 +000015%domain_array = uninitialized global [497 x %Domain]
Vikram S. Adved28c8c82002-09-28 18:09:05 +000016
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, ubyte 3
26 %reg846 = getelementptr int* %reg841, long 1
27 %reg820 = load int* %reg846
28 ret int %reg820
29}