JITCallProxy.cpp 499 B

1234567891011121314151617181920
  1. // Copyright (C) 2013 Sony Computer Entertainment Inc.
  2. // All Rights Reserved.
  3. #include "config.h"
  4. #if ENABLE(DETACHED_JIT) && !BUILDING_DETACHED_JIT
  5. #include "JIT.h"
  6. namespace JSC {
  7. void JIT::privateCompileClosureCall(CallLinkInfo* callLinkInfo, CodeBlock* calleeCodeBlock, Structure* expectedStructure, ExecutableBase* expectedExecutable, MacroAssemblerCodePtr codePtr)
  8. {
  9. abort();
  10. }
  11. } // namespace JSC
  12. #endif // #if ENABLE(DETACHED_JIT) && !BUILDING_DETACHED_JIT