forked from OSchip/llvm-project
[utils] Make .cfi_startproc optional for powerpc
Summary: llc sometimes may not emit .cfi_startproc which makes func_dict to have less entries. Subscribers: nemanjai, llvm-commits Differential Revision: https://reviews.llvm.org/D42144 llvm-svn: 322725
This commit is contained in:
parent
279ace187a
commit
c4526fc5af
|
@ -59,7 +59,7 @@ ASM_FUNCTION_MIPS_RE = re.compile(
|
|||
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
|
||||
|
|
Loading…
Reference in New Issue