forked from OSchip/llvm-project
[flang] Remove debugging
Original-commit: flang-compiler/f18@1db626f838 Reviewed-on: https://github.com/flang-compiler/f18/pull/449 Tree-same-pre-rewrite: false
This commit is contained in:
parent
bb83471e96
commit
04d85f1754
|
@ -339,7 +339,7 @@ static CS GatherReferencesFromExpression(const parser::Expr &expression) {
|
|||
explicit CollectSymbols(int) {}
|
||||
void Handle(const Symbol *symbol) { result().push_back(symbol); }
|
||||
};
|
||||
return evaluate::Visitor<GRFECollectSymbols>{0}.Traverse(
|
||||
return evaluate::Visitor<CollectSymbols>{0}.Traverse(
|
||||
expression.typedExpr->v);
|
||||
} else {
|
||||
GatherSymbols gatherSymbols;
|
||||
|
|
Loading…
Reference in New Issue