[PATCH] D42144: [utils] Make .cfi_startproc optional for powerpc
Fangrui Song via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 17 10:50:17 PST 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL322725: [utils] Make .cfi_startproc optional for powerpc (authored by MaskRay, committed by ).
Repository:
rL LLVM
https://reviews.llvm.org/D42144
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
@@ -59,7 +59,7 @@
ASM_FUNCTION_PPC_RE = re.compile(
r'^_?(?P<func>[^:]+):[ \t]*#+[ \t]*@(?P=func)\n'
r'\.Lfunc_begin[0-9]+:\n'
- r'[ \t]+.cfi_startproc\n'
+ r'(?:[ \t]+.cfi_startproc\n)?'
r'(?:\.Lfunc_[gl]ep[0-9]+:\n(?:[ \t]+.*?\n)*)*'
r'(?P<body>.*?)\n'
# This list is incomplete
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D42144.130215.patch
Type: text/x-patch
Size: 525 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180117/457b5642/attachment.bin>
More information about the llvm-commits
mailing list