summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/xor-undef.ll
blob: cf72955b66b3139f07b9f4f071fcaeef9b2cd57b (plain)
1
2
3
4
5
6
; RUN: opt < %s -instcombine -S | grep zeroinitializer

define <2 x i64> @f() {
	%tmp = xor <2 x i64> undef, undef
        ret <2 x i64> %tmp
}