Author: Timm Bäder Date: 2025-12-18T10:24:40+01:00 New Revision: ad761003103fa58ddb283c160d21266bf61c0d6d
URL: https://github.com/llvm/llvm-project/commit/ad761003103fa58ddb283c160d21266bf61c0d6d DIFF: https://github.com/llvm/llvm-project/commit/ad761003103fa58ddb283c160d21266bf61c0d6d.diff LOG: [clang][bytecode] Add missing cstdint include This broke the clang-riscv-gauntlet builder: https://lab.llvm.org/buildbot/#/builders/210/builds/6697 Added: Modified: clang/lib/AST/ByteCode/InitMap.h Removed: ################################################################################ diff --git a/clang/lib/AST/ByteCode/InitMap.h b/clang/lib/AST/ByteCode/InitMap.h index 9fd88a66502ef..44184f4ba18a0 100644 --- a/clang/lib/AST/ByteCode/InitMap.h +++ b/clang/lib/AST/ByteCode/InitMap.h @@ -12,6 +12,7 @@ #include <cassert> #include <climits> #include <memory> +#include <cstdint> namespace clang { namespace interp { _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
