File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
llvm/include/llvm/Analysis Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -293,8 +293,8 @@ template <typename NodeType> class DependenceGraphInfo {
293
293
// / Return a string representing the type of dependence that the dependence
294
294
// / analysis identified between the two given nodes. This function assumes
295
295
// / that there is a memory dependence between the given two nodes.
296
- const std::string getDependenceString (const NodeType &Src,
297
- const NodeType &Dst) const ;
296
+ std::string getDependenceString (const NodeType &Src,
297
+ const NodeType &Dst) const ;
298
298
299
299
protected:
300
300
// Name of the graph.
@@ -470,7 +470,7 @@ bool DependenceGraphInfo<NodeType>::getDependencies(
470
470
}
471
471
472
472
template <typename NodeType>
473
- const std::string
473
+ std::string
474
474
DependenceGraphInfo<NodeType>::getDependenceString(const NodeType &Src,
475
475
const NodeType &Dst) const {
476
476
std::string Str;
You can’t perform that action at this time.
0 commit comments