• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 // Copyright 2022 the V8 project authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5 
6 #ifndef V8_EXECUTION_CLOBBER_REGISTERS_H_
7 #define V8_EXECUTION_CLOBBER_REGISTERS_H_
8 
9 namespace v8 {
10 
11 namespace internal {
12 
13 double ClobberDoubleRegisters(double x1, double x2, double x3, double x4);
14 
15 }
16 }  // namespace v8
17 
18 #endif  // V8_EXECUTION_CLOBBER_REGISTERS_H_
19