[Openmp-commits] [openmp] 1af7541 - [Libomptarget] Fix missing semicolon in exports
Joseph Huber via Openmp-commits
openmp-commits at lists.llvm.org
Fri Oct 14 07:03:12 PDT 2022
Author: Joseph Huber
Date: 2022-10-14T09:02:42-05:00
New Revision: 1af75417414236bd163e62c383c8607bb44cb834
URL: https://github.com/llvm/llvm-project/commit/1af75417414236bd163e62c383c8607bb44cb834
DIFF: https://github.com/llvm/llvm-project/commit/1af75417414236bd163e62c383c8607bb44cb834.diff
LOG: [Libomptarget] Fix missing semicolon in exports
Added:
Modified:
openmp/libomptarget/plugins/exports
Removed:
################################################################################
diff --git a/openmp/libomptarget/plugins/exports b/openmp/libomptarget/plugins/exports
index 2f07d61b4673..cc7beda183af 100644
--- a/openmp/libomptarget/plugins/exports
+++ b/openmp/libomptarget/plugins/exports
@@ -1,6 +1,6 @@
VERS1.0 {
global:
- __tgt_rtl*
+ __tgt_rtl*;
local:
*;
};
More information about the Openmp-commits
mailing list