[compiler-rt] d97981c - [ORC-RT] Add missing cstdint include.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 16 16:48:03 PST 2023


Author: Lang Hames
Date: 2023-11-16T16:45:29-08:00
New Revision: d97981c98a70ebeaa8901f34921b0a69a068ff5d

URL: https://github.com/llvm/llvm-project/commit/d97981c98a70ebeaa8901f34921b0a69a068ff5d
DIFF: https://github.com/llvm/llvm-project/commit/d97981c98a70ebeaa8901f34921b0a69a068ff5d.diff

LOG: [ORC-RT] Add missing cstdint include.

This should have been included in b2bbe8cc1c7. Adding it should fix the bot
failures in https://lab.llvm.org/buildbot/#/builders/85/builds/20288

Added: 
    

Modified: 
    compiler-rt/lib/orc/stl_extras.h

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/orc/stl_extras.h b/compiler-rt/lib/orc/stl_extras.h
index 1eef56577bf8d0b..80a6cd13ac2810a 100644
--- a/compiler-rt/lib/orc/stl_extras.h
+++ b/compiler-rt/lib/orc/stl_extras.h
@@ -13,6 +13,7 @@
 #ifndef ORC_RT_STL_EXTRAS_H
 #define ORC_RT_STL_EXTRAS_H
 
+#include <cstdint>
 #include <utility>
 #include <tuple>
 


        


More information about the llvm-commits mailing list