================
@@ -7552,6 +7552,27 @@ attribute requires a string literal argument to identify 
the handle being releas
   }];
 }
 
+def zOSExportDocs : Documentation {
+  let Category = DocCatFunction;
+  let Content = [{
+Use the ``_Export`` keyword on a function or external variable to declare
+that it is to be exported (made available to other modules). You must define
+the object name in the same translation unit in which you use the ``_Export``
+keyword. For example:
+
+.. code-block:: c
+
+  int _Export anthony(float);
+
+This statement exports the function ``anthony``, if you define the function in 
the
+translation unit. The ``_Export`` keyword must immediately precede the 
declaration name.
+If you apply the ``_Export`` keyword to a class, the compiler automatically 
exports
----------------
erichkeane wrote:

```suggestion
If you apply the ``_Export`` keyword to a class or struct, the compiler 
automatically exports
```

What does it do with unions?

https://github.com/llvm/llvm-project/pull/111035
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to