1287516Sdim/*===- InstrProfilingUtil.h - Support library for PGO instrumentation -----===*\
2287516Sdim|*
3287516Sdim|*                     The LLVM Compiler Infrastructure
4287516Sdim|*
5287516Sdim|* This file is distributed under the University of Illinois Open Source
6287516Sdim|* License. See LICENSE.TXT for details.
7287516Sdim|*
8287516Sdim\*===----------------------------------------------------------------------===*/
9287516Sdim
10287516Sdim#ifndef PROFILE_INSTRPROFILINGUTIL_H
11287516Sdim#define PROFILE_INSTRPROFILINGUTIL_H
12287516Sdim
13287516Sdim/*! \brief Create a directory tree. */
14287516Sdimvoid __llvm_profile_recursive_mkdir(char *Pathname);
15287516Sdim
16287516Sdim#endif  /* PROFILE_INSTRPROFILINGUTIL_H */
17