1; RUN: opt -mtriple=x86_64-unknown-linux-gnu -load-store-vectorizer -mcpu haswell -S -o - %s | FileCheck %s 2; RUN: opt -mtriple=x86_64-unknown-linux-gnu -aa-pipeline=basic-aa -passes='function(load-store-vectorizer)' -mcpu haswell -S -o - %s | FileCheck %s 3 4; Check that the LoadStoreVectorizer does not crash due to not differentiating <1 x T> and T. 5 6; CHECK-LABEL: @vector_scalar( 7; CHECK: store double 8; CHECK: store <1 x double> 9define void @vector_scalar(double* %ptr, double %a, <1 x double> %b) { 10 %1 = bitcast double* %ptr to <1 x double>* 11 %2 = getelementptr <1 x double>, <1 x double>* %1, i32 1 12 store double %a, double* %ptr, align 8 13 store <1 x double> %b, <1 x double>* %2, align 8 14 ret void 15} 16