mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-03 08:30:47 +03:00
19 lines
568 B
C++
19 lines
568 B
C++
//===-- gen/abi-spirv.h - SPIRV 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 the SPIR-V targets, only OpenCL
|
|
// at the moment.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#pragma once
|
|
|
|
struct TargetABI;
|
|
|
|
TargetABI *createSPIRVABI();
|