Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions llvm/lib/Target/SystemZ/SystemZInstrVector.td
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ let Predicates = [FeatureVector] in {

let Predicates = [FeatureVector] in {
// Load.
defm VL : UnaryVRXAlign<"vl", 0xE706>;
let SimpleBDXLoad = 1 in
defm VL : UnaryVRXAlign<"vl", 0xE706>;

// Load to block boundary. The number of loaded bytes is only known
// at run time. The instruction is really polymorphic, but v128b matches
Expand Down Expand Up @@ -213,7 +214,8 @@ defm : ReplicatePeephole<VLREPG, v2f64, z_load, f64>;

let Predicates = [FeatureVector] in {
// Store.
defm VST : StoreVRXAlign<"vst", 0xE70E>;
let SimpleBDXStore = 1 in
defm VST : StoreVRXAlign<"vst", 0xE70E>;

// Store with length. The number of stored bytes is only known at run time.
def VSTL : StoreLengthVRSb<"vstl", 0xE73F, int_s390_vstl, 0>;
Expand Down
Loading
Loading