Add VE assembly scrubbing and triple support to update_llc_test_checks.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/utils/UpdateTestChecks/asm.py | ||
---|---|---|
170 | Do you ever seen this (?:\s*\.?Lfunc_begin[^:\n]*:\n)?[^:]*? in the output? I'm thinking that specifying only r'^_?(?P<func>[^:]+):[ \t]*#+[ \t]*@(?P=func)\n' is good enough for us. |
llvm/utils/UpdateTestChecks/asm.py | ||
---|---|---|
170 | I regenerated some tests with the shorter regex and it works fine. |
Do you ever seen this (?:\s*\.?Lfunc_begin[^:\n]*:\n)?[^:]*? in the output?
I'm thinking that specifying only r'^_?(?P<func>[^:]+):[ \t]*#+[ \t]*@(?P=func)\n' is good enough for us.