DataType operator--(int) { return Value--; }
const Statistic &operator+=(const DataType &V) { Value += V; return *this; }
const Statistic &operator-=(const DataType &V) { Value -= V; return *this; }
+ const Statistic &operator*=(const DataType &V) { Value *= V; return *this; }
+ const Statistic &operator/=(const DataType &V) { Value /= V; return *this; }
};
} // End llvm namespace
DataType operator--(int) { return Value--; }
const Statistic &operator+=(const DataType &V) { Value += V; return *this; }
const Statistic &operator-=(const DataType &V) { Value -= V; return *this; }
+ const Statistic &operator*=(const DataType &V) { Value *= V; return *this; }
+ const Statistic &operator/=(const DataType &V) { Value /= V; return *this; }
};
} // End llvm namespace