blob: 60e9458b3b38598d9e7b9e42e003dd089001ca81 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | not grep or
2
3%struct.foo = type { int, int, [0 x ubyte] }
4int %test(%struct.foo* %X) {
5 %tmp1 = getelementptr %struct.foo* %X, int 0, uint 2, int 100
6 %tmp = load ubyte* %tmp1 ; <ubyte> [#uses=1]
7 %tmp2 = cast ubyte %tmp to int ; <int> [#uses=1]
8 ret int %tmp2}
9
10
11