From: Michael Kruse Date: Fri, 25 Aug 2017 12:38:53 +0000 (+0000) Subject: Normlize to LF line endings. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f29303de236bf18fec2df5604e01ab72ff62423c;p=llvm Normlize to LF line endings. Commit r297442 introduced mixed CRLF/LF line endings to two files. Normalize to to LF-only line endings. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@311774 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/RegionPass.cpp b/lib/Analysis/RegionPass.cpp index b38e6225c84..b172d42c970 100644 --- a/lib/Analysis/RegionPass.cpp +++ b/lib/Analysis/RegionPass.cpp @@ -208,7 +208,7 @@ public: return false; } - StringRef getPassName() const override { return "Print Region IR"; } + StringRef getPassName() const override { return "Print Region IR"; } }; char PrintRegionPass::ID = 0; diff --git a/lib/IR/IRPrintingPasses.cpp b/lib/IR/IRPrintingPasses.cpp index 955fdc749b2..4c8afda18b7 100644 --- a/lib/IR/IRPrintingPasses.cpp +++ b/lib/IR/IRPrintingPasses.cpp @@ -71,7 +71,7 @@ public: AU.setPreservesAll(); } - StringRef getPassName() const override { return "Print Module IR"; } + StringRef getPassName() const override { return "Print Module IR"; } }; class PrintFunctionPassWrapper : public FunctionPass { @@ -94,7 +94,7 @@ public: AU.setPreservesAll(); } - StringRef getPassName() const override { return "Print Function IR"; } + StringRef getPassName() const override { return "Print Function IR"; } }; class PrintBasicBlockPass : public BasicBlockPass {