[PATCH] D53059: [NFC] Fix the regular expression for BE PPC in update_llc_test_checks.py

Nemanja Ivanovic via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 25 20:33:49 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL345363: [NFC] Fix the regular expression for BE PPC in update_llc_test_checks.py (authored by nemanjai, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D53059?vs=170410&id=171243#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D53059

Files:
  llvm/trunk/utils/UpdateTestChecks/asm.py


Index: llvm/trunk/utils/UpdateTestChecks/asm.py
===================================================================
--- llvm/trunk/utils/UpdateTestChecks/asm.py
+++ llvm/trunk/utils/UpdateTestChecks/asm.py
@@ -52,6 +52,7 @@
 
 ASM_FUNCTION_PPC_RE = re.compile(
     r'^_?(?P<func>[^:]+):[ \t]*#+[ \t]*@(?P=func)\n'
+    r'.*?'
     r'\.Lfunc_begin[0-9]+:\n'
     r'(?:[ \t]+.cfi_startproc\n)?'
     r'(?:\.Lfunc_[gl]ep[0-9]+:\n(?:[ \t]+.*?\n)*)*'


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D53059.171243.patch
Type: text/x-patch
Size: 447 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181026/4e1c5204/attachment.bin>


More information about the llvm-commits mailing list