aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/small-arguments.ll
blob: 9195d0f2677341709abd15275ba2288d4b8fac12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llvm-as < %s | llc -march=ppc32 | not grep 'extsh\|rlwinm r3, r3'

int %test1(short %X) {
	%Y = cast short %X to int  ;; dead
	ret int %Y
}

int %test2(ushort %X) {
	%Y = cast ushort %X to int
	%Z = and int %Y, 65535      ;; dead
	ret int %Z
}