blob: 9195d0f2677341709abd15275ba2288d4b8fac12 [file] [log] [blame]
Chris Lattnerc7307062005-08-31 18:19:50 +00001; RUN: llvm-as < %s | llc -march=ppc32 | not grep 'extsh\|rlwinm r3, r3'
2
3int %test1(short %X) {
4 %Y = cast short %X to int ;; dead
5 ret int %Y
6}
7
8int %test2(ushort %X) {
9 %Y = cast ushort %X to int
10 %Z = and int %Y, 65535 ;; dead
11 ret int %Z
12}