Remove tests for checking bytecode upgrade. Bytecode upgrade is being
[oota-llvm.git] / test / CodeGen / Generic / badFoldGEP.ll
1 ; RUN: llvm-as -f %s -o - | 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
17 implementation; Functions:
18
19 declare void %opaque([497 x %Domain]*)
20
21 int %main(int %argc, sbyte** %argv) {
22 bb0:                                    ;[#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 }