Share the profile info type enum with the C++ analysis libraries.
authorBrian Gaeke <gaeke@uiuc.edu>
Tue, 4 May 2004 16:51:48 +0000 (16:51 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Tue, 4 May 2004 16:51:48 +0000 (16:51 +0000)
Add a documentation comment for write_profiling_data().

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13345 91177308-0d34-0410-b5e6-96231b3b80d8

runtime/libprofile/Profiling.h

index 61ae09bf7b8659bbef9c1e8f0bf16facfb29af08..20f960f1b358cf5a9438aec9baa8b244d3f59471 100644 (file)
 #ifndef PROFILING_H
 #define PROFILING_H
 
+#include "llvm/Analysis/ProfileInfoTypes.h" /* for enum ProfilingType */
+
 /* save_arguments - Save argc and argv as passed into the program for the file
  * we output.
  */
 int save_arguments(int argc, const char **argv);
 
-enum ProfilingType {
-  Arguments = 1,   /* The command line argument block */
-  Function  = 2,   /* Function profiling information  */
-  Block     = 3,   /* Block profiling information     */
-  Edge      = 4,   /* Edge profiling information      */
-  Path      = 5,   /* Path profiling information      */
-  BBTrace   = 6    /* Basic block trace information   */
-};
-
+/* write_profiling_data - Write out a typed packet of profiling data to the
+ * current output file.
+ */
 void write_profiling_data(enum ProfilingType PT, unsigned *Start,
                           unsigned NumElements);