[X86] X86DAGToDAGISel - attempt to merge XMM/YMM loads with YMM/ZMM loads of the...
[llvm-project.git] / llvm / test / CodeGen / PowerPC / indexed-load.ll
blob72576b7469b65dd46fe5b58e63679231ed3a92b3
1 ; RUN: llc -verify-machineinstrs < %s | FileCheck %s
3 ; The SplitIndexingFromLoad tranformation exposed an isel backend bug.  This
4 ; testcase used to generate stwx 4, 3, 64.  stwx does not have an
5 ; immediate-offset format (note the 64) and it should not be matched.
7 target datalayout = "e-m:e-i64:64-n32:64"
8 target triple = "powerpc64le-unknown-linux-gnu"
10 %class.test = type { [64 x i8], [5 x i8] }
12 ; CHECK-LABEL: f:
13 ; CHECK-NOT: stwx {{[0-9]+}}, {{[0-9]+}}, 64
14 define void @f(ptr %this) {
15 entry:
16   %Subminor.i.i = getelementptr inbounds %class.test, ptr %this, i64 0, i32 1
17   %bf.load2.i.i = load i40, ptr %Subminor.i.i, align 4
18   %bf.clear7.i.i = and i40 %bf.load2.i.i, -8589934592
19   store i40 %bf.clear7.i.i, ptr %Subminor.i.i, align 4
20   ret void