Decouple SetExceptionToVReg

Signed-off-by: shawn_hu_ls <huxiaowei3@huawei.com>
This commit is contained in:
shawn_hu_ls
2022-02-22 10:45:49 +08:00
parent 724ea8df57
commit be6b009e17
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -127,7 +127,7 @@ public:
virtual void SetExceptionToVReg(
[[maybe_unused]] Frame::VRegister &vreg, // NOLINTNEXTLINE(google-runtime-references)
[[maybe_unused]] ObjectHeader *obj) const = 0;
[[maybe_unused]] ObjectHeader *obj) const;
virtual uint64_t GetTypeTag(interpreter::TypeTag tag) const
{
+6
View File
@@ -80,4 +80,10 @@ PandaUniquePtr<tooling::PtLangExt> LanguageContextBase::CreatePtLangExt() const
return nullptr;
}
void LanguageContextBase::SetExceptionToVReg(
[[maybe_unused]] Frame::VRegister &vreg, // NOLINTNEXTLINE(google-runtime-references)
[[maybe_unused]] ObjectHeader *obj) const
{
}
} // namespace panda