1 /*===- InstrProfilingUtil.h - Support library for PGO instrumentation -----===*\ 2 |* 3 |* The LLVM Compiler Infrastructure 4 |* 5 |* This file is distributed under the University of Illinois Open Source 6 |* License. See LICENSE.TXT for details. 7 |* 8 \*===----------------------------------------------------------------------===*/ 9 10 #ifndef PROFILE_INSTRPROFILINGUTIL_H 11 #define PROFILE_INSTRPROFILINGUTIL_H 12 13 /*! \brief Create a directory tree. */ 14 void __llvm_profile_recursive_mkdir(char *Pathname); 15 16 #endif /* PROFILE_INSTRPROFILINGUTIL_H */ 17