From 2e3ee4ceb5daa15ce1bec48c44314a0f1cbb4063 Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Thu, 9 Oct 2014 19:15:15 +0000 Subject: [PATCH] Fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219429 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/R600/SILowerI1Copies.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Target/R600/SILowerI1Copies.cpp b/lib/Target/R600/SILowerI1Copies.cpp index 3ab0c2ae8ed..9d792961117 100644 --- a/lib/Target/R600/SILowerI1Copies.cpp +++ b/lib/Target/R600/SILowerI1Copies.cpp @@ -43,7 +43,7 @@ public: bool runOnMachineFunction(MachineFunction &MF) override; const char *getPassName() const override { - return "SI Lower il Copies"; + return "SI Lower i1 Copies"; } void getAnalysisUsage(AnalysisUsage &AU) const override { @@ -56,10 +56,10 @@ public: } // End anonymous namespace. INITIALIZE_PASS_BEGIN(SILowerI1Copies, DEBUG_TYPE, - "SI Lower il Copies", false, false) + "SI Lower i1 Copies", false, false) INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) INITIALIZE_PASS_END(SILowerI1Copies, DEBUG_TYPE, - "SI Lower il Copies", false, false) + "SI Lower i1 Copies", false, false) char SILowerI1Copies::ID = 0;