[libc-commits] [libc] e5e0e79 - [libc] Fix prototype_test_gen

Guillaume Chatelet via libc-commits libc-commits at lists.llvm.org
Fri Jul 29 03:07:44 PDT 2022


Author: Guillaume Chatelet
Date: 2022-07-29T10:07:34Z
New Revision: e5e0e7963cd6d4500bb7c4c4aa2c90bddc8468f8

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

LOG: [libc] Fix prototype_test_gen

Added: 
    

Modified: 
    libc/utils/HdrGen/PrototypeTestGen/PrototypeTestGen.cpp

Removed: 
    


################################################################################
diff  --git a/libc/utils/HdrGen/PrototypeTestGen/PrototypeTestGen.cpp b/libc/utils/HdrGen/PrototypeTestGen/PrototypeTestGen.cpp
index 2400c5a5bf8a1..983f76fc95b20 100644
--- a/libc/utils/HdrGen/PrototypeTestGen/PrototypeTestGen.cpp
+++ b/libc/utils/HdrGen/PrototypeTestGen/PrototypeTestGen.cpp
@@ -22,7 +22,7 @@ llvm::cl::list<std::string>
 } // anonymous namespace
 
 bool TestGeneratorMain(llvm::raw_ostream &OS, llvm::RecordKeeper &records) {
-  OS << "#include \"TypeTraits.h\"\n";
+  OS << "#include \"type_traits.h\"\n";
   llvm_libc::APIIndexer G(records);
   std::unordered_set<std::string> headerFileSet;
   for (const auto &entrypoint : EntrypointNamesOption) {


        


More information about the libc-commits mailing list