Move two Value Profiler data structs to InstrProfData.inc (NFC)
[oota-llvm.git] / include / llvm / ProfileData / InstrProf.h
index ec08166492487837f451b7f389f7418d64624a54..cc49452eb87317429232dd4c43ef9cec0e2d9498 100644 (file)
@@ -199,13 +199,6 @@ struct InstrProfStringTable {
   }
 };
 
-struct InstrProfValueData {
-  // Profiled value.
-  uint64_t Value;
-  // Number of times the value appears in the training run.
-  uint64_t Count;
-};
-
 struct InstrProfValueSiteRecord {
   /// Value profiling data pairs at a given value site.
   std::list<InstrProfValueData> ValueData;