mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-09 04:15:58 +03:00
18 lines
544 B
C++
18 lines
544 B
C++
//===-- gen/abi-nvptx.h - NVPTX 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 by dcompute for targetting NVPTX for cuda
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#pragma once
|
|
|
|
struct TargetABI;
|
|
|
|
TargetABI *createNVPTXABI();
|