[PATCH] D35641: Fix update_llc_test_checks.py ARM parsing
Eli Friedman via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 28 16:59:11 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL309457: Fix update_llc_test_checks.py ARM parsing (authored by efriedma).
Changed prior to commit:
https://reviews.llvm.org/D35641?vs=107364&id=108746#toc
Repository:
rL LLVM
https://reviews.llvm.org/D35641
Files:
llvm/trunk/utils/update_llc_test_checks.py
Index: llvm/trunk/utils/update_llc_test_checks.py
===================================================================
--- llvm/trunk/utils/update_llc_test_checks.py
+++ llvm/trunk/utils/update_llc_test_checks.py
@@ -49,7 +49,7 @@
r'^(?P<func>[0-9a-zA-Z_]+):\n' # f: (name of function)
r'\s+\.fnstart\n' # .fnstart
r'(?P<body>.*?)\n' # (body of the function)
- r'.Lfunc_end[0-9]+:\n', # .Lfunc_end0:
+ r'.Lfunc_end[0-9]+:', # .Lfunc_end0:
flags=(re.M | re.S))
RUN_LINE_RE = re.compile('^\s*;\s*RUN:\s*(.*)$')
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D35641.108746.patch
Type: text/x-patch
Size: 561 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170728/7f1cb54b/attachment.bin>
More information about the llvm-commits
mailing list