• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #if V8_TARGET_ARCH_ARM64
6 
7 #include "src/arm64/assembler-arm64-inl.h"
8 #include "src/arm64/macro-assembler-arm64-inl.h"
9 #include "src/arm64/simulator-arm64.h"
10 #include "src/codegen.h"
11 #include "src/isolate.h"
12 #include "src/macro-assembler.h"
13 
14 namespace v8 {
15 namespace internal {
16 
17 #define __ ACCESS_MASM(masm)
18 
CreateSqrtFunction(Isolate * isolate)19 UnaryMathFunctionWithIsolate CreateSqrtFunction(Isolate* isolate) {
20   return nullptr;
21 }
22 
23 #undef __
24 
25 }  // namespace internal
26 }  // namespace v8
27 
28 #endif  // V8_TARGET_ARCH_ARM64
29