30 lines · cpp
1//===- TestOpenACC.cpp - OpenACC Test Registration ------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8//9// This file contains unified registration for all OpenACC test passes.10//11//===----------------------------------------------------------------------===//12 13namespace mlir {14namespace test {15 16// Forward declarations of individual test pass registration functions17void registerTestPointerLikeTypeInterfacePass();18void registerTestRecipePopulatePass();19void registerTestOpenACCSupportPass();20 21// Unified registration function for all OpenACC tests22void registerTestOpenACC() {23 registerTestPointerLikeTypeInterfacePass();24 registerTestRecipePopulatePass();25 registerTestOpenACCSupportPass();26}27 28} // namespace test29} // namespace mlir30