Tanya Lattner | 2393a24 | 2004-11-06 23:08:26 +0000 | [diff] [blame^] | 1 | ; RUN: llvm-as -f %s -o - | llc |
| 2 | |
Vikram S. Adve | d28c8c8 | 2002-09-28 18:09:05 +0000 | [diff] [blame] | 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* } |
Chris Lattner | 1fbaa0a | 2003-01-15 18:06:37 +0000 | [diff] [blame] | 15 | %domain_array = uninitialized global [497 x %Domain] |
Vikram S. Adve | d28c8c8 | 2002-09-28 18:09:05 +0000 | [diff] [blame] | 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, ubyte 3 |
| 26 | %reg846 = getelementptr int* %reg841, long 1 |
| 27 | %reg820 = load int* %reg846 |
| 28 | ret int %reg820 |
| 29 | } |