AsmJsJitTemplate.cpp 747 B

12345678910111213141516171819202122232425
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. #include "RuntimeLanguagePch.h"
  6. #ifdef ASMJS_PLAT
  7. namespace Js
  8. {
  9. #if DBG_DUMP
  10. FunctionBody* AsmJsJitTemplate::Globals::CurrentEncodingFunction = nullptr;
  11. #endif
  12. void* AsmJsJitTemplate::InitTemplateData()
  13. {
  14. __debugbreak();
  15. return nullptr;
  16. }
  17. void AsmJsJitTemplate::FreeTemplateData(void* userData)
  18. {
  19. __debugbreak();
  20. }
  21. }
  22. #endif