[PATCH] D63957: [UpdateTestChecks][PowerPC] Avoid empty string when scrubbing loop comments

Roman Lebedev via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Jun 29 07:54:35 PDT 2019


lebedev.ri added inline comments.


================
Comment at: llvm/utils/UpdateTestChecks/asm.py:218
   asm = string.expandtabs(asm, 2)
   # Stripe unimportant comments
+  asm = SCRUB_LOOP_COMMENT_RE.sub(r'#', asm)
----------------
Does the comment need updating?


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D63957/new/

https://reviews.llvm.org/D63957





More information about the llvm-commits mailing list