constant-fold-hang.ll 420 B

1234567891011121314
  1. ; RUN: opt -instcombine < %s
  2. ; Function Attrs: nounwind readnone ssp
  3. define void @mulByZero(<4 x i16> %x) #0 {
  4. entry:
  5. %a = tail call <4 x i32> @llvm.arm.neon.vmulls.v4i32(<4 x i16> %x, <4 x i16> zeroinitializer) #2
  6. ret void
  7. }
  8. ; Function Attrs: nounwind readnone
  9. declare <4 x i32> @llvm.arm.neon.vmulls.v4i32(<4 x i16>, <4 x i16>) #1
  10. attributes #0 = { nounwind readnone ssp }
  11. attributes #1 = { nounwind readnone }