mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-02-17 20:33:12 +01:00
The generic ABI works well with PPC64 except for LLVM PR 14779. (http://llvm.org/bugs/show_bug.cgi?id=14779) The new ABI infrastucture is based on the UnknownTargetABI. The PPC64 specific parts coming soon.
24 lines
598 B
C++
24 lines
598 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 ABI implementation used for 64 bit PowerPC targets.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#ifndef __LDC_GEN_ABI_PPC64_H__
|
||
#define __LDC_GEN_ABI_PPC64_H__
|
||
|
||
#include "gen/abi.h"
|
||
|
||
|
||
TargetABI* getPPC64TargetABI();
|
||
|
||
|
||
#endif
|