[NFC] UpdateTestChecks: asm.py: fix whitespace issue

llvm-svn: 361538
This commit is contained in:
Roman Lebedev 2019-05-23 19:15:05 +00:00
parent 63729b0c49
commit cb64cd9b60

View File

@ -29,7 +29,7 @@ ASM_FUNCTION_ARM_RE = re.compile(
ASM_FUNCTION_AARCH64_RE = re.compile(
r'^_?(?P<func>[^:]+):[ \t]*\/\/[ \t]*@(?P=func)\n'
r'(?:[ \t]+.cfi_startproc\n)?' # drop optional cfi noise
r'(?:[ \t]+.cfi_startproc\n)?' # drop optional cfi noise
r'(?P<body>.*?)\n'
# This list is incomplete
r'.Lfunc_end[0-9]+:\n',