1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
//===-- 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.
//
//===----------------------------------------------------------------------===//
#pragma once
struct TargetABI;
TargetABI *getX86_64TargetABI();
|