From: Roman Lebedev Date: Thu, 23 May 2019 19:15:05 +0000 (+0000) Subject: [NFC] UpdateTestChecks: asm.py: fix whitespace issue X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=883faf65ec133fd344ed248c3cc8af0f899e48df;p=llvm [NFC] UpdateTestChecks: asm.py: fix whitespace issue git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@361538 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/UpdateTestChecks/asm.py b/utils/UpdateTestChecks/asm.py index 459aa42381a..78da89d2730 100644 --- a/utils/UpdateTestChecks/asm.py +++ b/utils/UpdateTestChecks/asm.py @@ -29,7 +29,7 @@ ASM_FUNCTION_ARM_RE = re.compile( ASM_FUNCTION_AARCH64_RE = re.compile( r'^_?(?P[^:]+):[ \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.*?)\n' # This list is incomplete r'.Lfunc_end[0-9]+:\n',