1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

[IRTranslator][NFC] Use DEBUG_TYPE instead of repeating the name.

llvm-svn: 279878
This commit is contained in:
Quentin Colombet 2016-08-26 22:32:57 +00:00
parent 2cd9ce7522
commit 0b16bca0b7

View File

@ -30,7 +30,7 @@
using namespace llvm;
char IRTranslator::ID = 0;
INITIALIZE_PASS(IRTranslator, "irtranslator", "IRTranslator LLVM IR -> MI",
INITIALIZE_PASS(IRTranslator, DEBUG_TYPE, "IRTranslator LLVM IR -> MI",
false, false)
IRTranslator::IRTranslator() : MachineFunctionPass(ID), MRI(nullptr) {