mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-05 01:01:45 +00:00
[NFC] Fix the regular expression for BE PPC in update_llc_test_checks.py
Currently, the regular expression that matches the lines of assembly for PPC LE (ELFv2) does not work for the assembly for BE (ELFv1). This patch fixes it. Differential revision: https://reviews.llvm.org/D53059 llvm-svn: 345363
This commit is contained in:
parent
c3ce6b54bb
commit
bf43826c8b
@ -52,6 +52,7 @@ ASM_FUNCTION_MIPS_RE = re.compile(
|
|||||||
|
|
||||||
ASM_FUNCTION_PPC_RE = re.compile(
|
ASM_FUNCTION_PPC_RE = re.compile(
|
||||||
r'^_?(?P<func>[^:]+):[ \t]*#+[ \t]*@(?P=func)\n'
|
r'^_?(?P<func>[^:]+):[ \t]*#+[ \t]*@(?P=func)\n'
|
||||||
|
r'.*?'
|
||||||
r'\.Lfunc_begin[0-9]+:\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'(?:\.Lfunc_[gl]ep[0-9]+:\n(?:[ \t]+.*?\n)*)*'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user