Index: src/compiler/s390/instruction-selector-s390.cc |
diff --git a/src/compiler/s390/instruction-selector-s390.cc b/src/compiler/s390/instruction-selector-s390.cc |
index d3fa86149dfdd29e1819f62b240340002837193f..d29754cea5d4e75c9a42b2c0825dc9fa64c285fb 100644 |
--- a/src/compiler/s390/instruction-selector-s390.cc |
+++ b/src/compiler/s390/instruction-selector-s390.cc |
@@ -315,6 +315,12 @@ void InstructionSelector::VisitStore(Node* node) { |
} |
} |
+// Architecture supports unaliged access, therefore VisitLoad is used instead |
+void InstructionSelector::VisitUnalignedLoad(Node* node) { UNREACHABLE(); } |
+ |
+// Architecture supports unaliged access, therefore VisitStore is used instead |
+void InstructionSelector::VisitUnalignedStore(Node* node) { UNREACHABLE(); } |
+ |
void InstructionSelector::VisitCheckedLoad(Node* node) { |
CheckedLoadRepresentation load_rep = CheckedLoadRepresentationOf(node->op()); |
S390OperandGenerator g(this); |