2012-05-04 22:18:50 +02:00
|
|
|
//===-- llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.h ------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2012-05-04 22:18:50 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the declaration of the NVIDIA specific lowering of
|
|
|
|
// aggregate copies
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 18:26:38 +02:00
|
|
|
#ifndef LLVM_LIB_TARGET_NVPTX_NVPTXLOWERAGGRCOPIES_H
|
|
|
|
#define LLVM_LIB_TARGET_NVPTX_NVPTXLOWERAGGRCOPIES_H
|
2012-05-04 22:18:50 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
2015-03-09 16:50:58 +01:00
|
|
|
class FunctionPass;
|
2012-05-04 22:18:50 +02:00
|
|
|
|
2015-03-09 16:50:58 +01:00
|
|
|
FunctionPass *createLowerAggrCopies();
|
2012-05-04 22:18:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|