blob: 660eaad7bc12bfd07bc3b9f30e6082c4b582a75d [file] [log] [blame]
Dan Gohman66c80212009-09-11 18:17:12 +00001; RUN: opt < %s -sccp -S | not grep load
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3@Y = constant [6 x i101] [ i101 12, i101 123456789000000, i101 -12,
4 i101 -123456789000000, i101 0,i101 9123456789000000]
5
6define i101 @array()
7{
8Head:
9 %A = getelementptr [6 x i101]* @Y, i32 0, i32 1
10 %B = load i101* %A
11 %D = and i101 %B, 1
12 %DD = or i101 %D, 1
13 %E = trunc i101 %DD to i32
14 %F = getelementptr [6 x i101]* @Y, i32 0, i32 %E
15 %G = load i101* %F
16
17 ret i101 %G
18}