diff options
author | Matthias Braun <matze@braunis.de> | 2017-05-25 21:26:32 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2017-05-25 21:26:32 +0000 |
commit | 1527baab0ca1e449340d09a33a32cd01053f3241 (patch) | |
tree | 03842ea734eb7882b9512ae00a6894aecbf2c7e2 /llvm/lib/CodeGen/DetectDeadLanes.cpp | |
parent | 2897e0306efe62703bad8e1234334fefccf2ae37 (diff) | |
download | bcm5719-llvm-1527baab0ca1e449340d09a33a32cd01053f3241.tar.gz bcm5719-llvm-1527baab0ca1e449340d09a33a32cd01053f3241.zip |
CodeGen: Rename DEBUG_TYPE to match passnames
Rename the DEBUG_TYPE to match the names of corresponding passes where
it makes sense. Also establish the pattern of simply referencing
DEBUG_TYPE instead of repeating the passname where possible.
llvm-svn: 303921
Diffstat (limited to 'llvm/lib/CodeGen/DetectDeadLanes.cpp')
-rw-r--r-- | llvm/lib/CodeGen/DetectDeadLanes.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/DetectDeadLanes.cpp b/llvm/lib/CodeGen/DetectDeadLanes.cpp index 6f4ea1912cf..ab9a0592e01 100644 --- a/llvm/lib/CodeGen/DetectDeadLanes.cpp +++ b/llvm/lib/CodeGen/DetectDeadLanes.cpp @@ -132,8 +132,7 @@ private: char DetectDeadLanes::ID = 0; char &llvm::DetectDeadLanesID = DetectDeadLanes::ID; -INITIALIZE_PASS(DetectDeadLanes, "detect-dead-lanes", "Detect Dead Lanes", - false, false) +INITIALIZE_PASS(DetectDeadLanes, DEBUG_TYPE, "Detect Dead Lanes", false, false) /// Returns true if \p MI will get lowered to a series of COPY instructions. /// We call this a COPY-like instruction. |