[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / Transforms / LoadStoreVectorizer / X86 / vector-scalar.ll
blob00971f350388488c0a33a14fbbae88dca2a15be2
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
4 ; Check that the LoadStoreVectorizer does not crash due to not differentiating <1 x T> and T.
6 ; CHECK-LABEL: @vector_scalar(
7 ; CHECK: store double
8 ; CHECK: store <1 x double>
9 define 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