blob: 814a826aae8a5daa4e0fb9f5bd3689bb671bdd14 [file] [log] [blame]
Ulrich Weigand51eccec2014-08-04 13:27:12 +00001; RUN: llc -mcpu=pwr6 -mattr=+altivec < %s
2
Ulrich Weigand983341d2014-08-04 14:55:26 +00003target datalayout = "e-m:e-i64:64-n32:64"
4target triple = "powerpc64le-unknown-linux-gnu"
5
Ulrich Weigand51eccec2014-08-04 13:27:12 +00006; Common code used to replace the urem by a mulhu, and compilation would
7; then crash since mulhu isn't supported on vector types.
8
9define <4 x i32> @test(<4 x i32> %x) {
10entry:
11 %0 = urem <4 x i32> %x, <i32 2147483647, i32 2147483647, i32 2147483647, i32 2147483647>
12 ret <4 x i32> %0
13}