blob: 60e9458b3b38598d9e7b9e42e003dd089001ca81 [file] [log] [blame]
Reid Spencer69ccadd2006-12-02 04:23:10 +00001; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | not grep or
Chris Lattner65026a72005-10-30 19:42:18 +00002
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