Delete trailing whitespace

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302479 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sanjoy Das 2017-05-08 23:18:36 +00:00
parent c4c34cce40
commit 447ca1ab6d

View File

@ -26,7 +26,7 @@ namespace {
InstNamer() : FunctionPass(ID) {
initializeInstNamerPass(*PassRegistry::getPassRegistry());
}
void getAnalysisUsage(AnalysisUsage &Info) const override {
Info.setPreservesAll();
}
@ -48,11 +48,11 @@ namespace {
return true;
}
};
char InstNamer::ID = 0;
}
INITIALIZE_PASS(InstNamer, "instnamer",
INITIALIZE_PASS(InstNamer, "instnamer",
"Assign names to anonymous instructions", false, false)
char &llvm::InstructionNamerID = InstNamer::ID;
//===----------------------------------------------------------------------===//