brintos

brintos / llvm-project-archived public Read only

0
0
Text · 447 B · 2e60abc Raw
14 lines · plain
1; RUN: llc -verify-machineinstrs -mcpu=pwr6 -mattr=+altivec < %s2 3target datalayout = "e-m:e-i64:64-n32:64"4target triple = "powerpc64le-unknown-linux-gnu"5 6; Common code used to replace the urem by a mulhu, and compilation would7; 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> %013}14