Skip to content

Commit f4418f8

Browse files
authored
[SystemZ][z/OS] Replace unconventional characters that are not within the ASCII range (#72906)
This revision fixes the following error on z/OS. `LLVM ERROR: IO failure on output stream: EDC5122I Input/output error.` I replace unconventional characters with characters that are within the ASCII range.
1 parent 52204a2 commit f4418f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/include/clang/Basic/AttrDocs.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6701,7 +6701,7 @@ def ArmSmeStreamingCompatibleDocs : Documentation {
67016701
let Category = DocCatArmSmeAttributes;
67026702
let Content = [{
67036703
The ``__arm_streaming_compatible`` keyword applies to prototyped function types and
6704-
specifies that the function has a streaming compatible interface. This
6704+
specifies that the function has a "streaming compatible interface". This
67056705
means that:
67066706

67076707
* the function may be entered in either non-streaming mode (PSTATE.SM=0) or
@@ -7495,7 +7495,7 @@ a **coroutine return type (CRT)**.
74957495

74967496
A function ``R func(P1, .., PN)`` has a coroutine return type (CRT) ``R`` if ``R``
74977497
is marked by ``[[clang::coro_return_type]]`` and ``R`` has a promise type associated to it
7498-
(i.e., std​::​coroutine_traits<R, P1, .., PN>​::​promise_type is a valid promise type).
7498+
(i.e., std::coroutine_traits<R, P1, .., PN>::promise_type is a valid promise type).
74997499

75007500
If the return type of a function is a ``CRT`` then the function must be a coroutine.
75017501
Otherwise the program is invalid. It is allowed for a non-coroutine to return a ``CRT``

0 commit comments

Comments
 (0)