Index: src/compiler/ia32/instruction-selector-ia32.cc |
diff --git a/src/compiler/ia32/instruction-selector-ia32.cc b/src/compiler/ia32/instruction-selector-ia32.cc |
index 3852c05bbcaa3f80d15df7958cfcc20aa1cbbbca..ec98883c9135eb4130db716eb6ef1401b4dba175 100644 |
--- a/src/compiler/ia32/instruction-selector-ia32.cc |
+++ b/src/compiler/ia32/instruction-selector-ia32.cc |
@@ -303,6 +303,11 @@ void InstructionSelector::VisitStore(Node* node) { |
} |
} |
+// Architecture supports unaliged access, therefore VisitLoad is used instead |
titzer
2016/03/22 15:00:20
s/unaliged/unaligned/
here and in other files
|
+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()); |