summaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/cast-sext-zext.ll
blob: 0fecc1ce127d56b0facf118700a66d930222560b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: opt < %s -instcombine -S | not grep sext
; XFAIL: *

define zeroext i16 @t(i8 zeroext %on_off, i16* nocapture %puls) nounwind readonly {
entry:
	%0 = zext i8 %on_off to i32
	%1 = add i32 %0, -1
	%2 = sext i32 %1 to i64
	%3 = getelementptr i16* %puls, i64 %2
	%4 = load i16* %3, align 2
	ret i16 %4
}
OpenPOWER on IntegriCloud