about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src
diff options
context:
space:
mode:
authorCamille GILLOT <gillot.camille@gmail.com>2020-06-07 18:45:10 +0200
committerCamille GILLOT <gillot.camille@gmail.com>2020-10-22 22:35:32 +0200
commit0a4d948b4a8c69de0e3fdb231fdb14097849f6ce (patch)
tree2f41a210fc4f5b80607c2c02748ebe03e89bf98d /compiler/rustc_data_structures/src
parent500ddc5efda9d4b0c8f90b654d220ffc9e24ecb5 (diff)
downloadrust-0a4d948b4a8c69de0e3fdb231fdb14097849f6ce.tar.gz
rust-0a4d948b4a8c69de0e3fdb231fdb14097849f6ce.zip
Remove unused ProfileCategory.
Diffstat (limited to 'compiler/rustc_data_structures/src')
-rw-r--r--compiler/rustc_data_structures/src/profiling.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/compiler/rustc_data_structures/src/profiling.rs b/compiler/rustc_data_structures/src/profiling.rs
index 363879cbb1d..0ae3c75fcc2 100644
--- a/compiler/rustc_data_structures/src/profiling.rs
+++ b/compiler/rustc_data_structures/src/profiling.rs
@@ -111,17 +111,6 @@ cfg_if! {
 
 type Profiler = measureme::Profiler<SerializationSink>;
 
-#[derive(Clone, Copy, Debug, PartialEq, Eq, Ord, PartialOrd)]
-pub enum ProfileCategory {
-    Parsing,
-    Expansion,
-    TypeChecking,
-    BorrowChecking,
-    Codegen,
-    Linking,
-    Other,
-}
-
 bitflags::bitflags! {
     struct EventFilter: u32 {
         const GENERIC_ACTIVITIES = 1 << 0;