; NOTE: Assertions have been autogenerated by utils/update_test_checks.py ; RUN: opt < %s -vector-combine -S -mtriple=aarch64-- | FileCheck %s --check-prefixes=CHECK target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128" target triple = "aarch64-unknown-linux-gnu" ; This test checks we are not crashing with TTI when trying to get shuffle cost. ; This test also check that shuffle mask zeroinitializer is ; not narrowed into <0, 1, 0, 1, ...>, which we cannot reason if it's a valid ; splat or not. define @bitcast_shuffle( %a) { ; CHECK-LABEL: @bitcast_shuffle( ; CHECK-NEXT: [[I:%.*]] = shufflevector [[A:%.*]], poison, zeroinitializer ; CHECK-NEXT: [[R:%.*]] = bitcast [[I]] to ; CHECK-NEXT: ret [[R]] ; %i = shufflevector %a, poison, zeroinitializer %r = bitcast %i to ret %r }