mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-05 01:20:51 +03:00
22 lines
624 B
C++
22 lines
624 B
C++
//===-- gen/abi-x86-64.h - x86_64 ABI description ---------------*- C++ -*-===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
//
|
||
// The System V AMD64 ABI implementation used on all x86-64 platforms except
|
||
// for Windows.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#ifndef LDC_GEN_ABI_X86_64_H
|
||
#define LDC_GEN_ABI_X86_64_H
|
||
|
||
struct TargetABI;
|
||
|
||
TargetABI *getX86_64TargetABI();
|
||
|
||
#endif
|