diff options
| author | Mehdi Amini <mehdi.amini@apple.com> | 2016-10-01 02:56:57 +0000 |
|---|---|---|
| committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-10-01 02:56:57 +0000 |
| commit | 117296c0a00860072854dd3fee8cd710b7955cf7 (patch) | |
| tree | 8607cdf84f087928e123b023d511a39d99e088e6 /llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp | |
| parent | 86eeda8e20d5aa5a5622a487c56364b4b26c6f3a (diff) | |
| download | bcm5719-llvm-117296c0a00860072854dd3fee8cd710b7955cf7.tar.gz bcm5719-llvm-117296c0a00860072854dd3fee8cd710b7955cf7.zip | |
Use StringRef in Pass/PassManager APIs (NFC)
llvm-svn: 283004
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp')
| -rw-r--r-- | llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp b/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp index 001468a0433..f3345a69fe8 100644 --- a/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp +++ b/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp @@ -53,7 +53,7 @@ public: InstrProfilingLegacyPass() : ModulePass(ID), InstrProf() {} InstrProfilingLegacyPass(const InstrProfOptions &Options) : ModulePass(ID), InstrProf(Options) {} - const char *getPassName() const override { + StringRef getPassName() const override { return "Frontend instrumentation-based coverage lowering"; } |

