[libc-commits] [libc] [libc] Fix GPU test build error (PR #92235)
via libc-commits
libc-commits at lists.llvm.org
Wed May 15 02:53:11 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Jan Patrick Lehr (jplehr)
<details>
<summary>Changes</summary>
This fixes a build error on the AMDGPU buildbot introduced in PR https://github.com/llvm/llvm-project/pull/92172
---
Full diff: https://github.com/llvm/llvm-project/pull/92235.diff
1 Files Affected:
- (modified) libc/src/__support/StringUtil/tables/stdc_errors.h (+1-2)
``````````diff
diff --git a/libc/src/__support/StringUtil/tables/stdc_errors.h b/libc/src/__support/StringUtil/tables/stdc_errors.h
index a9c1527834550..6873d6bd51074 100644
--- a/libc/src/__support/StringUtil/tables/stdc_errors.h
+++ b/libc/src/__support/StringUtil/tables/stdc_errors.h
@@ -15,11 +15,10 @@
namespace LIBC_NAMESPACE {
-LIBC_INLINE_VAR constexpr const MsgTable<4> STDC_ERRORS = {
+LIBC_INLINE_VAR constexpr const MsgTable<3> STDC_ERRORS = {
MsgMapping(0, "Success"),
MsgMapping(EDOM, "Numerical argument out of domain"),
MsgMapping(ERANGE, "Numerical result out of range"),
- MsgMapping(EILSEQ, "Invalid or incomplete multibyte or wide character"),
};
} // namespace LIBC_NAMESPACE
``````````
</details>
https://github.com/llvm/llvm-project/pull/92235
More information about the libc-commits
mailing list