We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ReplayInlineAdvisor
1 parent fd38366 commit 2bfb19eCopy full SHA for 2bfb19e
llvm/lib/Analysis/ReplayInlineAdvisor.cpp
@@ -43,8 +43,8 @@ ReplayInlineAdvisor::ReplayInlineAdvisor(
43
// main:3:1.1;
44
// We use the callsite string after `at callsite` to replay inlining.
45
line_iterator LineIt(*BufferOrErr.get(), /*SkipBlanks=*/true);
46
- static const std::string PositiveRemark = "' inlined into '";
47
- static const std::string NegativeRemark = "' will not be inlined into '";
+ const std::string PositiveRemark = "' inlined into '";
+ const std::string NegativeRemark = "' will not be inlined into '";
48
49
for (; !LineIt.is_at_eof(); ++LineIt) {
50
StringRef Line = *LineIt;
0 commit comments