Index: runtime/vm/instructions_x64.cc |
diff --git a/runtime/vm/instructions_x64.cc b/runtime/vm/instructions_x64.cc |
index a531e66fadc27a53410ebead997008799e54762f..f4a0632291fa22618a38b049d1b397c8a315eaf6 100644 |
--- a/runtime/vm/instructions_x64.cc |
+++ b/runtime/vm/instructions_x64.cc |
@@ -73,6 +73,12 @@ const int* ShortCallPattern::pattern() const { |
return kCallPattern; |
} |
+ |
+const int* ReturnPattern::pattern() const { |
+ static const int kReturnPattern[kLengthInBytes] = { 0xC3 }; |
+ return kReturnPattern; |
+} |
+ |
} // namespace dart |
#endif // defined TARGET_ARCH_X64 |