[PATCH] D88096: [UpdateTestChecks] Match 'attributes #' at the end
Stefan Stipanovic via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 22 07:24:00 PDT 2020
sstefan1 accepted this revision.
sstefan1 added a comment.
This revision is now accepted and ready to land.
Now I see where the problem was. Thanks for taking a look.
LGTM!
================
Comment at: llvm/utils/UpdateTestChecks/common.py:569
+ lines = []
+ for m in global_ir_value_re.finditer(raw_tool_output):
+ lines.append(m.group(0))
----------------
Indentation seems off here and in few other places below.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88096/new/
https://reviews.llvm.org/D88096
More information about the llvm-commits
mailing list