aboutsummaryrefslogtreecommitdiff
path: root/mlir/test/lib/Dialect/OpenACC/TestOpenACC.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mlir/test/lib/Dialect/OpenACC/TestOpenACC.cpp')
-rw-r--r--mlir/test/lib/Dialect/OpenACC/TestOpenACC.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/mlir/test/lib/Dialect/OpenACC/TestOpenACC.cpp b/mlir/test/lib/Dialect/OpenACC/TestOpenACC.cpp
index 9886240..bea21b9 100644
--- a/mlir/test/lib/Dialect/OpenACC/TestOpenACC.cpp
+++ b/mlir/test/lib/Dialect/OpenACC/TestOpenACC.cpp
@@ -15,9 +15,13 @@ namespace test {
// Forward declarations of individual test pass registration functions
void registerTestPointerLikeTypeInterfacePass();
+void registerTestRecipePopulatePass();
// Unified registration function for all OpenACC tests
-void registerTestOpenACC() { registerTestPointerLikeTypeInterfacePass(); }
+void registerTestOpenACC() {
+ registerTestPointerLikeTypeInterfacePass();
+ registerTestRecipePopulatePass();
+}
} // namespace test
} // namespace mlir