Skip to content

Commit 4a27ddd

Browse files
committed
Remove 3-byte characters causing clang-tblgen to get I/O error.
[SystemZ} This revision fixes the following error caused by 301eb6b. LLVM ERROR: IO failure on output stream: EDC5122I Input/output error. The characters seems to be 3-byte characters which cause the failure with auto conversion from EBCDIC to ASCII. Credit to @kai who found this issue. Reviewed By: abhina.sreeskantharajan Differential Revision: https://reviews.llvm.org/D152016
1 parent 997c2f7 commit 4a27ddd

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
@@ -6559,7 +6559,7 @@ def ArmStreamingDocs : Documentation {
65596559

65606560
The ``__arm_streaming`` keyword is only available on AArch64 targets.
65616561
It applies to function types and specifies that the function has a
6562-
streaming interface. This means that:
6562+
"streaming interface". This means that:
65636563

65646564
* the function requires the Scalable Matrix Extension (SME)
65656565

@@ -6578,7 +6578,7 @@ function calls an ``__arm_streaming`` function, Clang generates code
65786578
that switches into streaming mode before calling the function and
65796579
switches back to non-streaming mode on return.
65806580

6581-
``__arm_streaming`` can appear anywhere that a standard ``[[]]`` type
6581+
``__arm_streaming`` can appear anywhere that a standard ``[[...]]`` type
65826582
attribute can appear.
65836583

65846584
See `Arm C Language Extensions <https://github.com/ARM-software/acle>`_

0 commit comments

Comments
 (0)